{% extends "base.html" %} {% block style %} {% endblock %} {% block content %}

Conferences

← back to agenda | travel | conference

{% for item in item_list %} {% if item == "today" %} {% set bg="bg-warning-subtle" %}
{{ today.strftime("%a, %d %b %Y") }}
today
{% else %}
{{ item.start.strftime("%a, %d %b %Y") }}
{{ item.end.strftime("%a, %d %b") }}
{{ item.name }}
{{ item.topic }}
{{ item.location }}
{% endif %} {% endfor %}
{% endblock %}