diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 20:50:21 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 20:50:21 +0000 |
commit | d79ffd8354413f4f295e13ecdea31d90d7722af5 (patch) | |
tree | f21479af1cc6df00733172c24a54ca12a57389a0 /core | |
parent | 8d8bc47e79fa3883a2a6404f7fc83b5a46829cd4 (diff) | |
download | troggle-d79ffd8354413f4f295e13ecdea31d90d7722af5.tar.gz troggle-d79ffd8354413f4f295e13ecdea31d90d7722af5.tar.bz2 troggle-d79ffd8354413f4f295e13ecdea31d90d7722af5.zip |
re-order names
Diffstat (limited to 'core')
-rw-r--r-- | core/views/logbooks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py index d74b54a..2466fec 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -29,7 +29,7 @@ def notablepersons(request): def notabilitykey(person): return person.notability() - persons = Person.objects.all() + persons = Person.objects.order_by('fullname') # From what I can tell, "persons" seems to be the table rows, while "pcols" is the table columns. - AC 16 Feb 09 pcols = [] ncols = 4 @@ -50,7 +50,7 @@ def notablepersons(request): def people_ids(request): - persons = Person.objects.all() + persons = Person.objects.order_by('fullname') # From what I can tell, "persons" seems to be the table rows, while "pcols" is the table columns. - AC 16 Feb 09 pcols = [] ncols = 4 |