Oleksii Petrenko | 24f1f8f | 2020-06-26 18:09:43 +0300 | [diff] [blame] | 1 | from django.urls import path |
| 2 | |
| 3 | from . import views |
| 4 | |
| 5 | urlpatterns = [ |
| 6 | path("", views.redirect_to_index, name="redirect"), |
| 7 | path("runs/", views.create_run, name="create_run"), |
| 8 | path("runs/<int:run_id>/", views.single_run, name="single_run"), |
| 9 | path("runs/<int:run_id>/submit/", views.submit_run, name="submit_run"), |
| 10 | path("reports/", views.list_reports, name="list_reports"), |
| 11 | path("reports/<int:report_id>/", views.single_report, name="single_report"), |
| 12 | path('index/', views.index, name='index'), |
| 13 | path("help/", views.show_help, name="help"), |
Oleksii Petrenko | 6826817 | 2020-09-28 16:58:13 +0300 | [diff] [blame^] | 14 | path("update_jenkins_plot", views.update_jenkins_plot, name="update_jenkins"), |
| 15 | path("jenkins_plot", views.jenkins_plot, name="jenkins_plot") |
Oleksii Petrenko | 24f1f8f | 2020-06-26 18:09:43 +0300 | [diff] [blame] | 16 | ] |