{% extends "base.html" %} {% block title %}Basic Group #{{ group.id }}: {{ group.name }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %}

Basic Group #{{ group.id }}: {{ group.name }}

{{ group.description }}

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 %}