Web M&M
https://mam.matfyz.cz
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.
21 lines
428 B
21 lines
428 B
3 years ago
|
from django.urls import path
|
||
|
from aesop import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path(
|
||
|
'aesop-export/mam-rocnik-<int:prvni_rok>.csv',
|
||
|
views.ExportRocnikView.as_view(),
|
||
|
name='seminar_export_rocnik'
|
||
|
),
|
||
|
path(
|
||
|
'aesop-export/mam-sous-<str:datum_zacatku>.csv',
|
||
|
views.ExportSousView.as_view(),
|
||
|
name='seminar_export_sous'
|
||
|
),
|
||
|
path(
|
||
|
'aesop-export/index.csv',
|
||
|
views.ExportIndexView.as_view(),
|
||
|
name='seminar_export_index'
|
||
|
),
|
||
|
]
|