diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2019-03-09 18:21:10 +0000 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2019-03-09 18:21:10 +0000 |
commit | 7a7433bc844b1ac9bd8046e5a996d43ea4c5523e (patch) | |
tree | 7a1207160143422086bcc8c5f2efec1d491375ae /urls.py | |
parent | ff8c5ef0c1df3cbb13b128eac7b3b9e328d99ca2 (diff) | |
download | troggle-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"), |