{% extends "motion/base.html" %} {% load i18n %} {% block page_id %}group-events{% endblock %} {% block head_title %}{% blocktrans with block.super as super %}{{ super }}: Recent Activity{% endblocktrans %}{% endblock %} {% block page_layout %}layout-two-column-right{% endblock %} {% block feed %} {% endblock %} {% block beta_widgets %} {% include "motion/widgets/members.html" %} {# include "motion/widgets/popular_entries.html" #} {# include "motion/widgets/gallery.html" #} {{ block.super }} {% endblock %} {% block content_head %}
{% if settings.allow_posting and user.is_authenticated %}
{% include "motion/bits/compose_form.html" %} {% include "motion/widgets/compose_user.html" %}
{% endif %}
{% endblock %} {% block content_body %}
{% with page_obj.object_list as events %} {% include "motion/bits/event_list.html" %} {% endwith %}
{% endblock %}