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

{% trans "Create a new team" %}

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