1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 07:18:25 +02:00

Order solutions by problem number

This commit is contained in:
Yohann D'ANELLO
2020-05-06 14:50:07 +02:00
parent 1a83aa0388
commit abafdc86d9
2 changed files with 2 additions and 1 deletions

View File

@ -165,6 +165,7 @@ class TeamDetailView(LoginRequiredMixin, DetailView):
context = super().get_context_data(**kwargs)
context["title"] = _("Information about team")
context["ordered_solutions"] = self.object.solutions.order_by('problem').all()
context["team_users_emails"] = [user.email for user in self.object.users.all()]
return context