{% extends "pretixpresale/organizers/base.html" %} {% load i18n %} {% load rich_text %} {% load eventurl %} {% load urlreplace %} {% block title %}{% trans "Event overview" %}{% endblock %} {% block content %} {% if organizer_homepage_text %}
{{ organizer_homepage_text | rich_text }}
{% endif %}

{{ date|date:"DATE_FORMAT" }}

{% for f, v in request.GET.items %} {% if f != "date" %} {% endif %} {% endfor %}
{% include "pretixpresale/fragment_calendar_nav.html" with date=date request=request style="day" %}
{% if has_before %} {% endif %} {% if has_after %} {% endif %}
{% include "pretixpresale/fragment_day_calendar.html" with show_avail=request.organizer.settings.event_list_availability %}
{% if has_before %} {{ before|date:"SHORT_DATE_FORMAT" }} {% endif %} {% if has_after %} {{ after|date:"SHORT_DATE_FORMAT" }} {% endif %}
{% if multiple_timezones %}
{% blocktrans trimmed %} Note that the events in this view are in different timezones. {% endblocktrans %}
{% endif %} {% endblock %}