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"), |
Anna Arhipova | 52cdec9 | 2023-10-05 23:05:48 +0200 | [diff] [blame] | 10 | path("runs/<int:run_id>/delete/", views.delete_run, name="delete_run"), |
Oleksii Petrenko | 24f1f8f | 2020-06-26 18:09:43 +0300 | [diff] [blame] | 11 | path("reports/", views.list_reports, name="list_reports"), |
| 12 | path("reports/<int:report_id>/", views.single_report, name="single_report"), |
| 13 | path('index/', views.index, name='index'), |
| 14 | path("help/", views.show_help, name="help"), |
Anna Arhipova | 7cdcc85 | 2023-11-15 18:20:45 +0100 | [diff] [blame^] | 15 | path("update_jenkins_plot", |
| 16 | views.update_jenkins_plot, |
| 17 | name="update_jenkins"), |
| 18 | path("jenkins_plot", views.jenkins_plot, name="jenkins_plot"), |
| 19 | path("compare_suites/new/", views.compare_suites, name="compare_suites"), |
| 20 | path("compare_suites/", |
| 21 | views.list_of_comparing_reports, |
| 22 | name="list_of_comparing_reports"), |
| 23 | path("compare_suites/submit/", views.submit_suites, name="submit_suites"), |
| 24 | path("compare_suites/<int:report_id>/", views.report_comparing_suites, |
| 25 | name="report_comparing_suites"), |
Oleksii Petrenko | 24f1f8f | 2020-06-26 18:09:43 +0300 | [diff] [blame] | 26 | ] |