Skip to content
Snippets Groups Projects
Commit 6a5755fd authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

fix ordering

parent 045be630
No related branches found
No related tags found
No related merge requests found
...@@ -434,7 +434,7 @@ class HomePeoplePage(RoutablePageMixin, Page): ...@@ -434,7 +434,7 @@ class HomePeoplePage(RoutablePageMixin, Page):
@property @property
def people(self): def people(self):
return HomePersonPage.objects.live().order_by("-title").all() return HomePersonPage.objects.live().order_by("title").all()
class Meta: class Meta:
verbose_name = "Rozcestník osob" verbose_name = "Rozcestník osob"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment