{% extends "motion/base.html" %} {% load i18n %} {% comment %} Template used for displaying the member directory for the group. {% endcomment %} {% block head_title %}{% blocktrans with block.super as super %}{{ super }}: Members{% endblocktrans %}{% endblock %} {% block page_id %}members-list{% endblock %} {% block content_body %} {% if request.user.is_superuser and not rel %}
{% trans "Export Member List" %}
{% endif %}

{% if rel %} {% ifequal rel "following" %} {% blocktrans count page_obj.paginator.count as count and member.display_name as name %} {{ name }} follows 1 person. {% plural %} {{ name }} follows {{ count }} people. {% endblocktrans %} {% else %} {% blocktrans count page_obj.paginator.count as count and member.display_name as name %} {{ name }}’s 1 Follower {% plural %} {{ name }}’s {{ count }} Followers {% endblocktrans %} {% endifequal %} {% else %} {% blocktrans count page_obj.paginator.count as count %} 1 Member {% plural %} {{ count }} Members {% endblocktrans %} {% blocktrans with page_obj.paginator.offset as offset and page_obj.end_index as end_index %} Showing {{ offset }}-{{ end_index }} {% endblocktrans %} {% endif %}

{% if page_obj.has_previous %} {% with "top" as position %} {% include "motion/bits/pagination.html" %} {% endwith %} {% endif %} {% if request.user.is_authenticated %}

{% trans "To follow a member, hover over their picture and click ‘Follow’." %}

{% endif %} {% include "motion/bits/pagination.html" %} {% endblock %}