aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/urls.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2020-07-28 21:17:18 +0200
committerAndrea Lepori <alepori@student.ethz.ch>2020-07-28 21:17:18 +0200
commit68cc1657fbe11b8ffbcd4d3d517f71c4404497c3 (patch)
tree37fd17cb370bca5bb0a5779295256b141cf0295b /accounts/urls.py
parentlocal font feching, list for non interactive items (diff)
downloadscout-subs-68cc1657fbe11b8ffbcd4d3d517f71c4404497c3.tar.gz
scout-subs-68cc1657fbe11b8ffbcd4d3d517f71c4404497c3.zip
accept terms on account creation
Diffstat (limited to 'accounts/urls.py')
-rw-r--r--accounts/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/accounts/urls.py b/accounts/urls.py
index a2d8541..6a44457 100644
--- a/accounts/urls.py
+++ b/accounts/urls.py
@@ -3,6 +3,7 @@ from django.urls import path, include
from . import views
urlpatterns = [
- path('signup/', views.SignUp.as_view(), name='signup'),
+ path('signup/', views.signup, name='signup'),
path('personal/', views.personal, name='personal'),
+ path('terms/', views.terms, name='terms'),
]