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

Groups {{ groups | length }}

{{searchbox(select="groups")}}
{% if groups %} {% for group in groups %}
{{ group.group_name }}
{{ group.display_name }}
Formed {{ group.created |humanize_tooltip | safe }}
{{group.projects | count }} {{group.users | count}}
{% endfor %} {% else %}

No groups have been created on this pagure instance yet

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