summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorSam Wenham <sam@wenhams.co.uk>2019-03-09 18:21:10 +0000
committerSam Wenham <sam@wenhams.co.uk>2019-03-09 18:21:10 +0000
commit7a7433bc844b1ac9bd8046e5a996d43ea4c5523e (patch)
tree7a1207160143422086bcc8c5f2efec1d491375ae /urls.py
parentff8c5ef0c1df3cbb13b128eac7b3b9e328d99ca2 (diff)
downloadtroggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.tar.gz
troggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.tar.bz2
troggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.zip
Fix people list
Cope with Jimmy McFoo as a name! Don't set the top expo value in the code whin it is piss easy to calculate Fix typo from last commit
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 48eda7e..0dbd9a0 100644
--- a/urls.py
+++ b/urls.py
@@ -40,7 +40,7 @@ actualurlpatterns = patterns('',
url(r'^expedition/(\d+)$', views_logbooks.expedition, name="expedition"),
url(r'^expeditions/?$', views_logbooks.ExpeditionListView.as_view(), name="expeditions"),
- url(r'^personexpedition/(?P<first_name>[A-Z]*[a-z]*)[^a-zA-Z]*(?P<last_name>[A-Z]*[a-z]*)/(?P<year>\d+)/?$', views_logbooks.personexpedition, name="personexpedition"),
+ url(r'^personexpedition/(?P<first_name>[A-Z]*[a-z]*)[^a-zA-Z]*(?P<last_name>[A-Z]*[a-zA-Z]*)/(?P<year>\d+)/?$', views_logbooks.personexpedition, name="personexpedition"),
url(r'^logbookentry/(?P<date>.*)/(?P<slug>.*)/?$', views_logbooks.logbookentry,name="logbookentry"),
url(r'^newlogbookentry/(?P<expeditionyear>.*)$', views_logbooks.newLogbookEntry, name="newLogBookEntry"),
url(r'^editlogbookentry/(?P<expeditionyear>[^/]*)/(?P<pdate>[^/]*)/(?P<pslug>[^/]*)/$', views_logbooks.newLogbookEntry, name="editLogBookEntry"),