{% extends 'layout.html' %} {% load i18n %} {% load group_tags %} {% block title %}{{ group.name }}{% endblock %} {% block content %}

{{ group.name }} {% include 'snippets/privacy-icons.html' with item=group %}

{% include 'groups/created_text.html' with group=group %}

{% if request.user == group.user %}
{% trans "Edit group" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text icon_with_text="pencil" controls_text="edit_group" focus="edit_group_header" %}
{% endif %}
{% include 'snippets/trimmed_text.html' with full=group.description %}
{% include 'groups/edit_form.html' with controls_text="edit_group" %}
{% block panel %}{% endblock %} {% endblock %}