diff --git a/symposion/teams/templatetags/teams_tags.py b/symposion/teams/templatetags/teams_tags.py index a50ca93a0c10148117250217e1bceb3678ce2cc5..a41b76ff4b7d0f3e4d2dae99111bec2dda5bda79 100644 --- a/symposion/teams/templatetags/teams_tags.py +++ b/symposion/teams/templatetags/teams_tags.py @@ -27,6 +27,8 @@ class AvailableTeamsNode(template.Node): teams.append(team) elif team.access == "open" and state is None: teams.append(team) + elif request.user.is_staff and state is None: + teams.append(team) context[self.context_var] = teams return u""