summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urls.py b/urls.py
index 72c713f..e7c8f21 100644
--- a/urls.py
+++ b/urls.py
@@ -123,7 +123,7 @@ else:
# admin.site.urls is urls() which maps to get_urls() which is a function declared
# in django/contrib/admin/sites.py which for me is
-# /home/philip/p11d5/lib/python3.11/site-packages/django/contrib/admin/sites.py
+# /home/philip/expo/troggle/.venv/lib/python3.xx/site-packages/django/contrib/admin/sites.py
trogglepatterns = [
path('pubs.htm', pubspage, name="pubspage"), # ~165 hrefs to this url in expoweb files
@@ -170,7 +170,7 @@ trogglepatterns = [
path('accounts/login/', expologin, name='expologin'), # same as in django.contrib.auth.urls
path("accounts/register/<slug:username>", register, name="re_register"),
path("accounts/register/", register, name="register"),
- path('accounts/', include('django.contrib.auth.urls')), # see site-packages\registration\auth_urls_classes.py
+ path('accounts/', include('django.contrib.auth.urls')), # see line 109 in this file
path('person/<slug:slug>', person, name="person"),
path('personexpedition/<slug:slug>/<int:year>', personexpedition, name="personexpedition"),