{% import "plainui/components/integrations.html" as integrations %} {% import "plainui/components/markdown.html" as markdownMacro %} {% import "plainui/components/list_events.html" as list_events with context %} {% import "plainui/components/nav.html" as navMacro with context %} {% extends "plainui/base.html" %} {% block title %}Conference {{conf.name}} - Room {{room.name}}{% endblock %} {% block head %} {% endblock %} {% block content %} {{ navMacro.top_nav(_("Room"), has_breadcrumbs=True) }}

{{ room.name }}

{% if voc_stream %}

{{ _("Currently Streaming") }}

{{ integrations.vocPlayer(vocStream=voc_stream) }}
{% endif %} {% if room.description %}

{{ _("Description") }}

{{ markdownMacro.markdown(markdown=room.description_html | safe) }} {% endif %} {% if events %}

{{ _("Events") }}

{{ list_events.list(events, my_favorite_events, my_scheduled_events ) }}
{% endif %} {% if links %}

{{ _("Links") }}

{% endif %} {% endblock %}