You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
517 B
15 lines
517 B
6 months ago
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
app_name = 'report'
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('<str:template>/index/', views.report_index, name='report_index'),
|
||
|
path('contribute/', views.select_contribute, name='select_contribute'),
|
||
|
path('composition/', views.select_composition, name='select_composition'),
|
||
|
path('serve/', views.select_serve, name='select_serve'),
|
||
|
|
||
|
path('loss/index/', views.loss_index, name='loss_index'),
|
||
|
path('loss/list/', views.select_loss_list, name='select_loss_list'),
|
||
|
]
|