{% extends "helpme/base.html" %} {% load crispy_forms_tags %} {% block help_content %} {% if admin %} {% for team in teams %} {% empty %} {% endfor %}
Manage Teams
{{ team }}
You are not managing any teams yet.

Create a new team

{% csrf_token %} {{ form|crispy }}
{% else %} {% for team in user_teams %} {% empty %} {% endfor %}
My Teams
{{ team }}
You don't belong to any teams yet.
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}