summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index ad64d2b..e33a616 100644
--- a/urls.py
+++ b/urls.py
@@ -23,10 +23,11 @@ urlpatterns = patterns('',
url(r'^personindex$', personindex, name="personindex"),
url(r'^person/(.+)$', person, name="person"),
- url(r'^logbookentry/(\d+)$', logbookentry, name="logbookentry"),
+ url(r'^logbookentry/(.+)$', logbookentry, name="logbookentry"),
url(r'^logbooksearch/(.*)/?$', logbookSearch),
url(r'^expedition/(\d+)$', expedition, name="expedition"),
+ url(r'^personexpedition/(.+?)/(\d+)$', personexpedition, name="personexpedition"),
url(r'^statistics/?$', stats, name="stats"),