{% from 'events/display/common/_manage_button.html' import render_manage_button %} {% from 'events/display/indico/_common.html' import render_location %} {% from 'events/timetable/display/indico/_common.html' import render_description, render_time %} {% macro render_break(item, event, parent=none, timezone=none, show_notes=true, hide_end_time=false, nested=false, show_location=false) %}
  • {{ render_time(item, timezone=timezone, hide_end_time=hide_end_time) }}
    {{- item.title -}} {% if item.duration -%} {{ item.duration | format_human_timedelta(narrow=true) }} {%- endif %} {% if item.has_location_info and show_location -%} {{ render_location(item, parent=parent) }} {%- endif %}
    {% if item.description %} {{ render_description(item, class='break-description') }} {% endif %}
  • {% endmacro %}