{% extends "motion/base.html" %} {% load i18n %} {% block page_id %}user-following{% endblock %} {% block page_layout %}layout-two-column-right{% endblock %} {% block content_body %} {% if not page_obj.object_list %} {% block empty_events %} {% url members as members_url %} {% url home as home_url %} {% if not following.total_results %} {% blocktrans with request.group.display_name as group_name %}

You are not following any members of {{ group_name }}.

Find members to follow!

Once you start following other members, their activity on {{ group_name }} will appear on this page.

{% endblocktrans %} {% else %} {% blocktrans with request.group.display_name as group_name %}

There is no activity from the members you are following on {{ group_name }}.

Find more members to follow!

{% endblocktrans %} {% endif %} {% endblock %} {% else %}
{% with page_obj.object_list as events %} {% include "motion/bits/event_list.html" %} {% endwith %}
{% endif %} {% endblock %}