{% import "plainui/components/markdown.html" as markdownMacro %} {% import "plainui/components/event_info.html" as eventInfoMacro %} {% import "plainui/components/title.html" as titleMacro %} {% import "plainui/components/tagbox.html" as tagboxMacro %} {% import "plainui/components/resourcesbox.html" as resboxMacro %} {% import "plainui/components/list_events.html" as list_events with context %} {% import "plainui/components/integrations.html" as integrations %} {% extends "plainui/base.html" %} {% block title %}{{conf.name}} - Event {{event.name}}{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ titleMacro.title(event.name) }} {% if event.kind == "official" and running_state == "running" %}
{{ integrations.vocPlayer(vocLecture=event.slug) }}

{% endif %} {% set current_assembly = { "link": url('plainui:assembly', assembly_slug=assembly.slug), "name": assembly.name } if assembly and assembly.slug else {} %} {{ eventInfoMacro.eventInfo(event, speakers, current_assembly) }} {% if event.abstract or event.description_html %}
{% if event.abstract %}
{{ event.abstract }}
{% endif %} {% if event.description_html %} {{ markdownMacro.markdown(markdown=event.description_html | safe) }} {% endif %} {% endif %}

{{ _("recommendations") }}

{{ list_events.slider(suggested, is_favorite_events, is_scheduled_events ) }}

{% endblock %}