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

initial method for identifying potato hut laptops as cookie

This commit is contained in:
2025-05-23 21:58:21 +03:00
parent c7df859d80
commit 1bb950ec45
3 changed files with 30 additions and 18 deletions

View File

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