{% extends "base.html" %} {% block title %}{{ _('Basic Group') }} #{{ group.id }}: {{ group.name | get_translated_text }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %} {% set allowed_language_ids = [] %} {% for language in languages %} {{ allowed_language_ids.append(language.id) or '' }} {% endfor %}

{{ _('Basic Group') }} #{{ group.id }}: {{ group.name | get_translated_text }}

{% if basic_group_categories %}

{{ _('Categories') }}: {% for category in basic_group_categories %} {%- if not loop.first %}, {% endif -%} {%- for category_name in category_names[category.id] -%} {%- if not loop.first %} / {% endif -%} {{ category_name | get_translated_text(default=_('Unnamed Category')) }} {%- endfor -%} {% endfor %}

{% endif %}

{{ group.description | get_translated_text }}

{{ _('Members') }}

{% if show_objects_link %}
{{ _('View Objects') }}
{% endif %} {% if show_invitation_log %} {% with all_invitations = group_invitations %} {% include "invitation_log.html" %} {% endwith %} {% elif group_invitations %} {% with pending_invitations = group_invitations %} {% include "pending_invitations.html" %} {% endwith %} {% endif %} {% if not current_user.is_readonly %} {% if edit_group_form %} {% endif %} {% if invite_user_form %} {% endif %} {% endif %} {% if leave_group_form %}
{{ leave_group_form.csrf_token() }}
{% endif %} {% if not current_user.is_readonly %} {% if delete_group_form %} {% endif %}
{% if edit_group_form %} {% endif %} {% if invite_user_form %} {% endif %} {% if delete_group_form %} {% endif %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% if show_edit_form %} {% endif %} {% endblock %}