Skip to content
Snippets Groups Projects
Commit 8547ed52 authored by HeJ's avatar HeJ
Browse files

assembly view: use official room ordering here, too

parent a9c5d0f0
Branches
Tags
No related merge requests found
...@@ -67,7 +67,7 @@ class AssemblyView(ConferenceRequiredMixin, DetailView): ...@@ -67,7 +67,7 @@ class AssemblyView(ConferenceRequiredMixin, DetailView):
Prefetch( Prefetch(
'rooms', 'rooms',
to_attr='public_rooms', to_attr='public_rooms',
queryset=Room.objects.conference_accessible(self.conf).order_by('name'), queryset=Room.objects.conference_accessible(self.conf).order_by('official_room_order', 'name'),
), ),
Prefetch( Prefetch(
'tags', 'tags',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment