Add statistics page

This commit is contained in:
Aarni
2017-10-11 21:45:35 +03:00
parent b67db50dbb
commit fd09d83daa
3 changed files with 53 additions and 1 deletions
+2
View File
@@ -22,6 +22,7 @@ from webapp.views import kaehmy_view
from webapp.views import kaehmy_list_view
from webapp.views import kaehmy_submit
from webapp.views import kaehmy_comment
from webapp.views import kaehmy_statistics_view
urlpatterns = [
# main
@@ -51,6 +52,7 @@ urlpatterns = [
url(r'^kaehmy/new', kaehmy_view),
url(r'^kaehmy/submit', kaehmy_submit),
url(r'^kaehmy/add_comment', kaehmy_comment),
url(r'^kaehmy/statistics', kaehmy_statistics_view),
# ohlhafv
url(r'^ohlhafv$', ohlhafv_view),