Fix bad order call

This commit is contained in:
Stefan Wehrmeyer 2022-03-14 13:57:19 +01:00
parent f9667a8e26
commit 9dcec2fa62

View file

@ -32,7 +32,7 @@ class GovPlanSectionDetailView(GovernmentMixin, DetailView):
categories__in=self.object.categories.all(), government=self.government
)
.distinct()
.order_by("order", "title")
.order_by("title")
)
return context