{% extends "plainui/base.html" %} {% import "plainui/components/markdown.html" as markdownMacro %} {% import "plainui/components/list_events.html.j2" as listEventsMacro with context %} {% from "plainui/components/calendar.html" import calendar with context %} {% block head %} {% endblock %} {% block title %}{{conf.name}} - {{ _("Main Program") }}{% endblock %} {% block content %} {{ titleMacro.title(title=_("Main Program")) }}
{{ _('Fahrplan in new Tab') }}
{% for room in rooms_active %}

{{_("Room %(room)s", room=room.room.name)}}

{{ _("Event") }}

{{room.current_event.name}} {% if room.current_event.language %} [{{ room.current_event.language | escape }}] {% endif %}
{{ _("participate") }} // {{ _("details") }}

{{ _("Time") }}
{{ room.current_event.schedule_start | strfdates }} {{ room.current_event.schedule_start | strftimehm }} - {{ room.current_event.schedule_end | strftimehm }}
{{ _("Abstract") }}
{% if room.current_event.abstract %} {{ room.current_event.abstract | escape }} {% else %} - {% endif %}
{{ _("Speakers") }}
{{ room.current_event.get_all_speaker_names()| join(', ') | escape }}
{% if room.next_event %}

{{ _("Upcoming") }}

{{ _("Event") }}

{{room.next_event.name}}
{{ _("participate") }} // {{ _("details") }}

{{ _("Time") }}
{{ room.next_event.schedule_start | strfdates }} {{ room.next_event.schedule_start | strftimehm }} - {{ room.next_event.schedule_end | strftimehm }}
{% endif %}
{% endfor %} {% if rooms_active %}
{{ _('Fahrplan in new Tab') }}

{% endif %} {% for room in rooms_inactive %}

{{_("Room %(room)s", room=room.room.name)}}

no running event

{% if room.next_event %}

{{ _("Upcoming") }}

{{ _("Event") }}

{{room.next_event.name}}
{{ _("participate") }} // {{ _("details") }}

{{ _("Time") }}
{{ room.next_event.schedule_start | strfdates }} {{ room.next_event.schedule_start | strftimehm }} - {{ room.next_event.schedule_end | strftimehm }}
{% endif %}
{% endfor %} {% endblock %}