Private
Public Access
1
0

adding survey storage

This commit is contained in:
Sander Roosendaal
2020-01-10 16:09:33 +01:00
parent 1f96ff4fa7
commit 04f0ff5781
10 changed files with 204 additions and 5 deletions

View File

@@ -22,6 +22,7 @@ from django.views.generic import TemplateView
from rowsandall_app.views import rootview, landingview
from django.contrib.auth import views as auth_views
from rowers import views as rowersviews
from survey import views as surveyviews
import django
@@ -65,6 +66,7 @@ urlpatterns += [
{'next_page': '/'},
name='logout',),
re_path(r'^rowers/',include('rowers.urls')),
re_path(r'^survey/',include('survey.urls')),
# re_path(r'^cvkbrno/',include('cvkbrno.urls')),
# re_path(r'^admin/rq/',include('django_rq_dashboard.urls')),
re_path(r'^call\_back',rowersviews.rower_process_callback),