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
commitb4296f1736a4ab464ef4bdc3662693b14a966443 (patch)
tree7a1207160143422086bcc8c5f2efec1d491375ae /urls.py
parent1bac650aeeb7db415df82a9dda7a457f451856d4 (diff)
downloadtroggle-b4296f1736a4ab464ef4bdc3662693b14a966443.tar.gz
troggle-b4296f1736a4ab464ef4bdc3662693b14a966443.tar.bz2
troggle-b4296f1736a4ab464ef4bdc3662693b14a966443.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"),