{% extends "base.html" %} {% block fixed_action %} {{ macros.ical_action(title="S'abonner au séminaire") }} {% endblock fixed_action %} {% block content %}

{{ page.title }}

{% include "partial/date_place.html" %}
{% if page.event.funding %}{% endif %}
{{ page.text }}
    {% for day in page.event.program.values()|sort(attribute='date') %} {% if day.date %}
  • {{ day.date.strftime("%A %-d %B %Y")|capitalize }}

  • {% endif %} {% for time_slot in day.time_slots|sort(attribute='start') %}
  • {% if time_slot.start %} {% if time_slot.end %}
    {{ time_slot.start.strftime("%H:%M") }} - {{ time_slot.end.strftime("%H:%M") }}
    {% else %}
    {{ time_slot.start.strftime("%H:%M") }}
    {% endif %} {% endif %}

    {{ time_slot.speaker }}{% if time_slot.affiliation %}, {{ time_slot.affiliation }}{% endif %}

    {% if time_slot.speaker %}

    {{ time_slot.title }}

    {% endif %}
    {% if time_slot.attachment %} {% endif %}
    {% if time_slot.abstract %}
    {{ time_slot.abstract }}
    {% endif %}
  • {% endfor %} {% endfor %}
{% if page.event.funding %}

Funding

{{ page.event.funding }}

{% endif %} {% endblock content %}