diff options
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 |