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 | b4296f1736a4ab464ef4bdc3662693b14a966443 (patch) | |
tree | 7a1207160143422086bcc8c5f2efec1d491375ae /core/views_logbooks.py | |
parent | 1bac650aeeb7db415df82a9dda7a457f451856d4 (diff) | |
download | troggle-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 'core/views_logbooks.py')
-rw-r--r-- | core/views_logbooks.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/views_logbooks.py b/core/views_logbooks.py index 3ab55d6..0a90d7e 100644 --- a/core/views_logbooks.py +++ b/core/views_logbooks.py @@ -267,4 +267,3 @@ def get_people(request, expeditionslug): def get_logbook_entries(request, expeditionslug): exp = Expedition.objects.get(year = expeditionslug) return render_with_context(request,'options.html', {"items": [(le.slug, "%s - %s" % (le.date, le.title)) for le in exp.logbookentry_set.all()]}) - |