From: Guillaume Pellerin Date: Thu, 16 Aug 2018 14:47:28 +0000 (+0200) Subject: fix urls methods X-Git-Tag: 1.3.1~3 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4961a0902fba20ff8b00aadf0251e04d6db460d6;p=teleforma.git fix urls methods --- diff --git a/teleforma/urls.py b/teleforma/urls.py index 4913c0c7..5d53db72 100644 --- a/teleforma/urls.py +++ b/teleforma/urls.py @@ -80,8 +80,8 @@ urlpatterns = patterns('', url(r'^desk/periods/(?P.*)/medias/(?P.*)/detail/$', MediaView.as_view(), name="teleforma-media-detail"), url(r'^desk/periods/(?P.*)/medias/(?P.*)/embed/$', MediaViewEmbed.as_view(), name="teleforma-media-embed"), - url(r'^desk/periods/(?P.*)/medias/(?P.*)/download/$', media.download(), name="teleforma-media-download"), - url(r'^desk/periods/(?P.*)/medias/(?P.*)/streaming/$', media.streaming(), name="teleforma-media-streaming"), + url(r'^desk/periods/(?P.*)/medias/(?P.*)/download/$', media.download, name="teleforma-media-download"), + url(r'^desk/periods/(?P.*)/medias/(?P.*)/streaming/$', media.streaming, name="teleforma-media-streaming"), url(r'^desk/documents/(?P.*)/detail/$', DocumentView.as_view(), name="teleforma-document-detail"),