| from django.urls import path |
| |
| from . import views |
| |
| urlpatterns = [ |
| path("", views.redirect_to_index, name="redirect"), |
| path("runs/", views.create_run, name="create_run"), |
| path("runs/<int:run_id>/", views.single_run, name="single_run"), |
| path("runs/<int:run_id>/submit/", views.submit_run, name="submit_run"), |
| path("reports/", views.list_reports, name="list_reports"), |
| path("reports/<int:report_id>/", views.single_report, name="single_report"), |
| path('index/', views.index, name='index'), |
| path("help/", views.show_help, name="help"), |
| path("update_jenkins_plot", views.update_jenkins_plot, name="update_jenkins"), |
| path("jenkins_plot", views.jenkins_plot, name="jenkins_plot") |
| ] |