{% extends 'groups/layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% load markdown %} {% block panel %}
{% if request.GET.updated %}
{% trans "You successfully added a user to this group!" %}
{% endif %} {% if not members.object_list.exists %}

{% trans "This group has no members" %}

{% else %}
    {% for member in members %}
  1. member.username

{% endfor %} {% endif %} {% include "snippets/pagination.html" with page=items %} {% endblock %}