{% trans "Group users together and give them permissions based on the membership." %}
{% if object_list %}
{% include 'partials/toolbar_search.html' %}
{% trans 'Create' %}
{% include 'partials/pagination.html' %}
{% trans 'Name' %}
{% trans 'Parent' %}
{% trans 'Members' %}
{% for group in object_list %}
{{ group.name }}
{{ group.parent }}
{{ group.users.all|length }}
{% trans 'Edit' %}
{% trans 'Delete' %}
{% endfor %}
{% include 'partials/pagination.html' %}
{% else %}
{% include 'partials/toolbar_search.html' %}
{% trans 'No Groups.' %}
{% if request.GET.search != "" %}
{% trans "Your search query doesn't match any groups." %}
{% else %}
{% trans 'Currently no group exist. Click the button below to create one.' %}
{% endif %}