{% if is_self %}
{% trans "Your Groups" %}
{% else %}
{% blocktrans with username=user.display_name %}Groups: {{ username }}{% endblocktrans %}
{% endif %}
{% if is_self %}
{% trans "Create group" as button_text %}
{% include 'snippets/toggle/open_button.html' with controls_text="create_group" icon_with_text="plus" text=button_text %}
{% endif %}
{% endblock %}
{% block panel %}
{% include 'groups/create_form.html' with controls_text="create_group" %}
{% include 'groups/user_groups.html' with memberships=memberships %}
{% include 'snippets/pagination.html' with page=user.memberships path=path %}