{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% load crispy_forms_tags %} {% load humanize %} {% load icons %} {% block breadcrumbs %}
{% trans "Name" %} | {% trans "Roles" %} | {% trans "Languages" %} | {% trans "Projects" %} | {% trans "Members" %} | |
---|---|---|---|---|---|
{{ group.name }} | {% for role in group.roles.all %} {{ role }} {% empty %} {% trans "Access only" %} {% endfor %} | {% if group.language_selection %} {% trans "All languages" %} {% else %} {% for language in group.languages.all %} {{ language }} {% endfor %} {% endif %} | {% if group.project_selection == 1 %} {% trans "All projects" %} {% elif group.project_selection == 3 %} {% trans "All public projects" %} {% elif group.project_selection == 4 %} {% trans "All protected projects" %} {% else %} {% for project in group.projects.all %} {{ project }} {% endfor %} {% endif %} | {{ group.user__count|intcomma }} | {% icon 'pencil.svg' %} {% icon 'delete.svg' %} |