{% 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 %} {% blocktrans with request.group.display_name as group_name %}

Follow members of {{ group_name }} and see their updates as they get posted.

Once the people you follow add new content, their updates will show here.

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