Private
Public Access
1
0

Merge branch 'develop' into feature/rules

This commit is contained in:
Sander Roosendaal
2020-01-11 13:55:18 +01:00
12 changed files with 207 additions and 8 deletions

View File

@@ -47,6 +47,7 @@ ALLOWED_HOSTS = CFG['allowed_hosts']
INSTALLED_APPS = [
'rowers',
'survey',
# 'cvkbrno',
'django.contrib.admin',
'django.contrib.auth',

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),