From: Guillaume Pellerin Date: Wed, 17 Apr 2024 08:25:26 +0000 (+0200) Subject: add comments X-Git-Tag: 2.9.0~29 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=00c29ba00f3128cb3d97693990ab9b2e35f7e187;p=teleforma.git add comments --- diff --git a/teleforma/urls.py b/teleforma/urls.py index d2bc5ba9..3d97a65f 100644 --- a/teleforma/urls.py +++ b/teleforma/urls.py @@ -176,6 +176,7 @@ urlpatterns = [ url(r'^desk/periods/(?P.*)/medias/(?P.*)/stream/$', media.stream, name="teleforma-media-stream"), + # Documents url(r'^desk/documents/(?P.*)/detail/$', DocumentView.as_view(), name="teleforma-document-detail"), url(r'^desk/documents/(?P.*)/download/$', document.download, @@ -183,6 +184,7 @@ urlpatterns = [ url(r'^desk/documents/(?P.*)/view/$', document.view, name="teleforma-document-view"), + # Annals url(r'^archives/annals/$', AnnalsView.as_view(), name="teleforma-annals"), @@ -191,6 +193,7 @@ urlpatterns = [ url(r'^archives/annals/by-course/(\w+)/$', AnnalsCourseView.as_view(), name="teleforma-annals-course"), + # Conferences url(r'^desk/periods/(?P.*)/conferences/(?P.*)/video/$', ConferenceView.as_view(), name="teleforma-conference-detail"),