{% 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'), report_url = url('plainui:fahrplan')) }} #} {% if timezone_warning %}
{{ _("Your timezone is configured to %(user_timezone)s, conference timezone is %(conf_timezone)s, showing times in your timezone", user_timezone=current_timezone, conf_timezone=conference_timezone) }}
{% endif %} {# 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 kind %}{% 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) }}
{% endif %} {% endblock %} {% block fullpage_add %} {% if mode == 'calendar' %}
{{ calendar(events) }}
{% endif %} {% endblock %}