mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-16 19:07:15 +00:00
re-order names
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user