{% extends "social/base.html" %} {% block content %} {% call m_box(_("Groups Directory")) %} {# don't change xml comment below for a jinja comment: it would remove the long message from i18n catalog... #} {# {% if g.user.has_role("admin") %} {{ _("Create new group") }} {% endif %} #} {# #} {# #} {% for group in groups %} {# #} {% endfor %}
{{ _("Groups") }} {{ _("Created On") }} {{ _("Members") }}
{{ group.name }}

{{ group.description|default("", true) }}

{{ group.created_at | date }} {{ group.members | count }}
{% if not g.user.is_member_of(group) %} {% else %} {% endif %}
{% endcall %} {% endblock %}