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:
4
urls.py
4
urls.py
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user