{% extends "cosinnus_event/base.html" %} {% load i18n static cosinnus_tags widget_tweaks %} {% block page_title %} {% trans "Events" %} {{ block.super }} {% endblock page_title %} {% block breadcrumb %} {{ block.super }}
  • {% if event_view == "upcoming" %}{% trans "Planned Events" %}{% elif event_view == "past" %}{% trans "Past Events" %}{% elif event_view == "archived" %}{% trans "Archived Event Polls" %}{% else %}{% trans "Events" %}{% endif %}
  • {% endblock %} {% block leftnav %} {% include "cosinnus_event/leftnav.html" %} {% endblock leftnav %} {% block content %} {% if not request.user or not request.user.is_authenticated %} {% include "cosinnus/not_logged_in_alert.html" %} {% endif %}
    {% include 'cosinnus/common/filter_controls.html' %} {% for event in archived_doodles %} {% include 'cosinnus_event/list_object.html' %} {% empty %} {% include 'cosinnus/common/empty_button.html' with message="There are no archived event polls." %} {% endfor %}
    {% endblock content %}