rendering styles; view order; i18n

This commit is contained in:
bkfox
2024-01-16 14:36:09 +01:00
parent 561914ee78
commit 825ed03dbd
18 changed files with 596 additions and 428 deletions

View File

@ -54,6 +54,9 @@ class ProgramListView(PageListView):
model = Program
attach_to_value = StaticPage.Target.PROGRAMS
def get_queryset(self):
return super().get_queryset().order_by("title")
# FIXME: not used
class ProgramPageDetailView(BaseProgramMixin, ParentMixin, PageDetailView):