{% extends "master.html" %} {% block title %}Groups{% endblock %} {%block tag %}groups{% endblock %} {% block content %}

Groups

{% if total_page and total_page > 1 %}
{% if page > 1%} < Previous {% else %} < Previous {% endif %} {{ page }} / {{ total_page }} {% if page < total_page %} Next > {% else %} Next > {% endif %}
{% endif %} {% if authenticated %}

Create a group

{%- if admin %} {{ form.group_type()|safe }} {%- endif %} {{ form.csrf_token }}
{% endif %}

{{ groups | length }} groups.

{% if groups %} {% else %}

No groups have been created on this pagure instance yet

{% endif %}
{% endblock %}