summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2025-01-25 19:56:36 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2025-01-25 19:56:36 +0000
commit0d105d40dabf9079dad98cdf01d15179c88a00b2 (patch)
treea670559cf0831ea757f11dcd6ea93865c435a585 /urls.py
parentc479345b6c2bed95b5228c5a25bfae8a159b2596 (diff)
downloadtroggle-0d105d40dabf9079dad98cdf01d15179c88a00b2.tar.gz
troggle-0d105d40dabf9079dad98cdf01d15179c88a00b2.tar.bz2
troggle-0d105d40dabf9079dad98cdf01d15179c88a00b2.zip
Signup form now saving data (and encrypting it)
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 8841093..414557c 100644
--- a/urls.py
+++ b/urls.py
@@ -57,7 +57,7 @@ from troggle.core.views.other import controlpanel, exportlogbook, frontpage, tod
from troggle.core.views.prospect import prospecting
from troggle.core.views.user_registration import register, newregister, reset_done, ExpoPasswordResetForm
from troggle.core.views.scans import allscans, cavewallets, scansingle, walletslistperson, walletslistyear
-from troggle.core.views.signup import signup
+from troggle.core.views.signup import signup, signupok
from troggle.core.views.uploads import dwgupload, expofilerename, gpxupload, photoupload
from troggle.core.views.wallets_edit import walletedit
@@ -144,6 +144,7 @@ trogglepatterns = [
path('logbookedit/', logbookedit, name='logbookedit'),
path('logbookedit/<slug:slug>', logbookedit, name='logbookedit'),
path('signup', signup, name='signup'),
+ path('signupok', signupok, name='signupok'),
# Renaming an uploaded file
path('expofilerename/<path:filepath>', expofilerename, name='expofilerename'),