blob: d530635da3967defbd2beba9fb73900da2a3cbc6 [file] [log] [blame]
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"),
]