{% extends 'user/layout.html' %} {% load i18n %} {% block header %}

{% 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/user_groups.html' with groups=groups %}
{% include 'snippets/pagination.html' with page=user_groups path=path %}
{% endblock %}