List of teams: Order alphabetically

This commit is contained in:
Raphael Michel
2021-02-01 09:34:15 +01:00
parent 818d75ddd7
commit 03648b77b1

View File

@@ -395,7 +395,7 @@ class TeamListView(OrganizerDetailViewMixin, OrganizerPermissionRequiredMixin, L
memcount=Count('members', distinct=True),
eventcount=Count('limit_events', distinct=True),
invcount=Count('invites', distinct=True)
).all()
).all().order_by('name')
class TeamCreateView(OrganizerDetailViewMixin, OrganizerPermissionRequiredMixin, CreateView):