Simple Ohlhafv challenge machine

This commit is contained in:
Aarni
2017-09-20 19:27:36 +03:00
parent f738e76726
commit 7a435bcbc6
6 changed files with 111 additions and 0 deletions
+8
View File
@@ -5,6 +5,9 @@ from webapp.views import admin_index
from webapp.views import login_view
from webapp.views import logout_view
from webapp.views import about_view
from webapp.views import ohlhafv_view
from webapp.views import ohlhafv_submit
from webapp.views import ohlhafv_list
urlpatterns = [
# main
@@ -17,4 +20,9 @@ urlpatterns = [
# git revision
url(r'^about', about_view),
#ohlhafv
url(r'^ohlhafv$', ohlhafv_view),
url(r'^ohlhafv/submit', ohlhafv_submit),
url(r'^ohlhafv/list', ohlhafv_list),
]