diff --git a/symposion/teams/views.py b/symposion/teams/views.py index 5b2622e794c0ba014a35c2b3bb84592703486de5..de657b317a675f72dca0971349a4d9b68f79529c 100644 --- a/symposion/teams/views.py +++ b/symposion/teams/views.py @@ -11,6 +11,7 @@ def team_detail(request, slug): team = get_object_or_404(Team, slug=slug) if team.get_state_for_user(request.user) != "manager": raise Http404() - + return render(request, "teams/team_detail.html", { + "team": team, })