2019-01-27 14:22:42 -08:00
|
|
|
# Link report and account functionality to views
|
2019-01-19 22:29:25 -08:00
|
|
|
|
2019-01-20 00:24:39 -08:00
|
|
|
from django.urls import path
|
2019-01-27 14:22:42 -08:00
|
|
|
from rest_framework.urlpatterns import format_suffix_patterns
|
2019-01-19 22:29:25 -08:00
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2019-02-04 12:10:12 -08:00
|
|
|
path('report', views.report),
|
2019-02-04 09:51:36 -08:00
|
|
|
path('reports', views.reports),
|
|
|
|
path('report/<int:report_pk>', views.report_detail),
|
2019-02-04 12:10:12 -08:00
|
|
|
path('report/<int:report_pk>/section/<int:section_pk>', views.section),
|
2019-01-19 22:29:25 -08:00
|
|
|
]
|
2019-01-27 14:22:42 -08:00
|
|
|
|
2019-02-03 16:56:34 -08:00
|
|
|
urlpatterns = format_suffix_patterns(urlpatterns)
|