From d79ffd8354413f4f295e13ecdea31d90d7722af5 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Mon, 20 Jan 2025 20:50:21 +0000 Subject: re-order names --- core/views/logbooks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/views/logbooks.py') 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 -- cgit v1.2.3