{% from "plainui/components/calendar.html" import calendar with context %} {% import "plainui/components/alert.html" as alert %} {% import "plainui/components/tagbox.html" as tagMacros with context %} {{ _("%(conf)s - Public Fahrplan", conf=conf.name) }} {% block head %}{% endblock %}

{{ _("%(conf)s Fahrplan", conf=conf.name) }}

{{ tagMacros.tag(_("Tracks"), style="clear") }} {% for track in tracks %}
{{ track.name }}
{%- endfor %}
{% if timezone_warning %} {% call alert.info(class="mb-2") %} {{ _( "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 ) }} {% endcall %} {% endif %}
{% if mode == 'list' %} {{ list_events.list(events, [], []) }} {% elif mode == 'calendar' %} {{ calendar(events, [], [], public=conf.require_ticket) }} {% endif %}