{% extends "base.html" %} {% load crispy_forms_tags humanize i18n icons permissions translations %} {% block breadcrumbs %}
  • {% translate "Manage" %}
  • {% translate "Teams" %}
  • {% endblock breadcrumbs %} {% block content %}

    {% translate "Manage teams" %}

    {% for group in object_list %} {% endfor %}
    {% translate "Name" %} {% translate "Roles" %} {% translate "Languages" %} {% translate "Projects" %} {% translate "Components" %} {% translate "Members" %}
    {% include "auth/teams-name.html" %} {% include "auth/teams-roles.html" %} {% include "auth/teams-languages.html" %} {% include "auth/teams-projects.html" %} {% include "auth/teams-components.html" %} {% include "auth/teams-count.html" %} {% icon 'pencil.svg' %} {% if not group.internal %} {% icon 'delete.svg' %} {% endif %}
    {% csrf_token %}
    {% csrf_token %}

    {% translate "Create new team" %}

    {{ form|crispy }}
    {% endblock content %}