Skip to content

Commit

Permalink
Merge pull request #147 from springload/fix/project-list-ordering
Browse files Browse the repository at this point in the history
Set an explicit ordering on the project listing
  • Loading branch information
haydngreatnews authored Jul 24, 2024
2 parents 2b048ff + ab4fa93 commit 242c094
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cdhweb/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ def get_child_queryset(self, request, filter_form):
# making the results into a queryset (above)
children = children.current()

children = children.order_by("title")
return children

def get_context(self, request, year=None, month=None):
Expand Down

0 comments on commit 242c094

Please sign in to comment.