{% extends "plainui/base.html" %} {% from "plainui/components/calendar.html" import calendar with context %} {% import "plainui/components/list_events.html" as list_events with context %} {% block title %}Conference {{conf.name}}{% endblock %} {% block content %} {{ titleMacro.title(_("schedule"), share_url = url('plainui:fahrplan', conf_slug=conf.slug), report_url = url('plainui:fahrplan', conf_slug=conf.slug)) }} {# TODO: Download options

{{ _("download") }}

{{ _("Xcal") }} {{ _("Xml") }} {{ _("Json") }} {{ _("QR-Code") }}
#}
{% if show_day_filters %}{% endif %} {% if show_assembly_filters %}{% endif %} {% if show_track_filters %}{% endif %} {% if day %}{% endif %} {% if curated %}{% endif %} {% if assembly %}{% endif %} {% if track %}{% endif %}
{# Assembly events are displayed on assmbly page. filter here by assembly will mean display serveral hundred assemblies. leave for the future #}
{% if show_day_filters %}
{% for n in range(days) %} {%- endfor %}
{% endif %} {# Leave for future, see above {% if show_assembly_filters %}
{% for asmbly in assemblies %} {%- endfor %}
{% endif %} #} {% if show_track_filters %}
{% for t in tracks %} {%- endfor %}
{% endif %}

{% if mode == 'list' %} {{ list_events.list(events, my_favorite_events, my_scheduled_events) }} {% elif mode == 'calendar' %} {{ calendar(events) }} {% endif %}
{% endblock %}