{% extends "master.html" %} {% block title %}Groups{% endblock %} {% set tag = "groups" %} {% from "_browseheader.html" import browse_header %} {% block header %} {% endblock %} {% block content %}
{{browse_header(select=tag)}}

Groups {{ groups | length }} {% if authenticated and config.get('ENABLE_GROUP_MNGT', False) %} {% endif %}

{% if authenticated %} {% endif %} {% if total_page and total_page > 1 %} {% endif %}
{% if groups %} {% for group in groups %}
{{ group.display_name }}
Formed {{ group.created |humanize }}
{% endfor %} {% else %}

No groups have been created on this pagure instance yet

{% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}