2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-16 22:27:14 +00:00

re-order names

This commit is contained in:
2025-01-20 20:50:21 +00:00
parent 8d8bc47e79
commit d79ffd8354

View File

@@ -29,7 +29,7 @@ def notablepersons(request):
def notabilitykey(person): def notabilitykey(person):
return person.notability() 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 # From what I can tell, "persons" seems to be the table rows, while "pcols" is the table columns. - AC 16 Feb 09
pcols = [] pcols = []
ncols = 4 ncols = 4
@@ -50,7 +50,7 @@ def notablepersons(request):
def people_ids(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 # From what I can tell, "persons" seems to be the table rows, while "pcols" is the table columns. - AC 16 Feb 09
pcols = [] pcols = []
ncols = 4 ncols = 4