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.
27 lines
839 B
27 lines
839 B
"""
|
|
Soubor sloužící jako „router“, tj. zde se definují url adresy a na co ukazují:
|
|
|
|
- ``aesop-export/mam-rocnik-<int:prvni_rok>.csv`` (seminar_export_rocnik) :class:`~aesop.views.ExportRocnikView`
|
|
- ``aesop-export/mam-sous-<str:datum_zacatku>.csv`` (seminar_export_sous) :class:`~aesop.views.ExportSousView`
|
|
- ``aesop-export/index.csv`` (seminar_export_index) :class:`~aesop.views.ExportIndexView`
|
|
"""
|
|
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'
|
|
),
|
|
]
|
|
|