{% import "macros.html" as macros %} {% extends "two_column_body.html" %} {% block title %}{% trans %}Groups{% endtrans %}{% endblock %} {% block content %}

{% trans %}Groups{% endtrans %}

{% if request.user.is_authenticated %}
{% endif %}
{% if user_can_add_groups %}

{% trans %}Tip: to create a new group - please go to some user profile and add the new group there. That user will be the first member of the group{% endtrans %}

{% endif %} {% for group in groups %} {{ macros.user_group( group, groups_membership_info[group.id], show_count=True ) }} {% endfor %}
{% trans %}Group{% endtrans %} {% trans %}Number of members{% endtrans %} {% trans %}Description{% endtrans %}
{% endblock %} {% block endjs %} {% compress js %} {% endcompress %} {% if request.user.is_authenticated %} {% endif %} {% endblock %}