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