diff options
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -55,7 +55,7 @@ from troggle.core.views.logbooks import ( person, personexpedition, ) -from troggle.core.views.other import controlpanel, exportlogbook, frontpage, todos +from troggle.core.views.other import controlpanel, exportlogbook, frontpage, todos, public_laptop 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 @@ -212,6 +212,8 @@ trogglepatterns = [ path('accounts/password_reset/', PasswordResetView.as_view(form_class=ExpoPasswordResetForm), name='password_reset'), path('accounts/reset/<uidb64>/<token>/', PasswordResetConfirmView.as_view(), name="password_reset_confirm"), path('accounts/', include('django.contrib.auth.urls')), # see line 109 in this file NB initial "/accounts/" in URL + + path('expo_laptop', public_laptop, name="public_laptop"), path('person/<slug:slug>', person, name="person"), path('personexpedition/<slug:slug>/<int:year>', personexpedition, name="personexpedition"), |