2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-15 13:37:05 +00:00

initial signup form, copy of PHP

This commit is contained in:
2025-01-15 14:34:29 +00:00
parent 49c0c0fe3a
commit d31777dc8d
3 changed files with 239 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ from troggle.core.views.expo import (
mediapage,
pubspage,
spider,
signup,
)
from troggle.core.views.logbook_edit import logbookedit
from troggle.core.views.logbooks import (
@@ -153,6 +154,7 @@ trogglepatterns = [
path('dwguploadnogit/<path:folder>', dwgupload, {'gitdisable': 'yes'}, name='dwguploadnogit'), # used in testing
path('logbookedit/', logbookedit, name='logbookedit'),
path('logbookedit/<slug:slug>', logbookedit, name='logbookedit'),
path('sign_up', signup, name='signup'),
# Renaming an uploaded file
path('expofilerename/<path:filepath>', expofilerename, name='expofilerename'),