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

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

{{ group.description }}

Members

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