Added basic statistics

This commit is contained in:
Raphael Michel
2015-08-15 11:07:04 +02:00
parent 9ffd166214
commit d9085d37a6
10 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/statistics/', views.IndexView.as_view(),
name='index'),
]