diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-10-10 00:28:57 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-10-10 00:28:57 +0300 |
commit | 8c8b6966a7d1e7ee1be5b2e4d8dfefcc3bf32410 (patch) | |
tree | 986ee77c9616a8ccdaa66c65bfaec90199e576c3 /core/views/statistics.py | |
parent | 861980a8e9f9d58e6327e8e1a98f7f8c5fec7048 (diff) | |
download | troggle-8c8b6966a7d1e7ee1be5b2e4d8dfefcc3bf32410.tar.gz troggle-8c8b6966a7d1e7ee1be5b2e4d8dfefcc3bf32410.tar.bz2 troggle-8c8b6966a7d1e7ee1be5b2e4d8dfefcc3bf32410.zip |
sort output, accept more comma use
Diffstat (limited to 'core/views/statistics.py')
-rw-r--r-- | core/views/statistics.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/views/statistics.py b/core/views/statistics.py index 14205b7..56517d7 100644 --- a/core/views/statistics.py +++ b/core/views/statistics.py @@ -1,6 +1,7 @@ import datetime import os.path import re +import operator from collections import OrderedDict import django.db.models @@ -179,12 +180,10 @@ def aliases(request, year): year = 1998 expo = Expedition.objects.filter(year=year)[0] # returns a set, even though we know there is only one personexpeditions = PersonExpedition.objects.filter(expedition=expo) - persons = Person.objects.all() - + persons = list(Person.objects.all().order_by('last_name')) + aliases = GetPersonExpeditionNameLookup(expo) - aliasdict = {key: val for key, val in sorted(aliases.items(), key = lambda ele: ele[0])} - aliasdict={} for i in sorted(aliases): aliasdict[i]=aliases[i] |