Commit cc5c45e4143577eac085d66de2a62cbe0a30118d
1 parent
7abebe1e
Exists in
master
and in
2 other branches
Included reports and message urls for webconference
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
webconference/urls.py
... | ... | @@ -14,4 +14,6 @@ urlpatterns = [ |
14 | 14 | url(r'^finish/$',views.finish, name = 'exit'), |
15 | 15 | url(r'^participating/$',views.participating, name = 'participating'), |
16 | 16 | url(r'^settings/$', views.ConferenceSettings.as_view(), name = 'settings'), |
17 | + url(r'^chart/(?P<slug>[\w_-]+)/$', views.StatisticsView.as_view(), name = 'get_chart'), | |
18 | + url(r'^send-message/(?P<slug>[\w_-]+)/$', views.SendMessage.as_view(), name = 'send_message'), | |
17 | 19 | ] | ... | ... |