{% load markup %}
{{ meeting.intro|markdown }}
{% ifnotequal sessions|length 0 %}
{% for s in sessions %}
{{ s.title|title }}
{{ s.intro|markdown }}
{% ifnotequal s.talks|length 0 %}
    {% for talk in s.talks %}
  • {% for d in talk.documents %} {% endfor %} {% for a in talk.audio %} {% endfor %} {% for v in talk.video %} {% endfor %}    {{ talk.title }} by {{ talk.presenter }}
  • {% endfor %}
{% endifnotequal %}
{% endfor %}
{% endifnotequal %} {% ifnotequal documents|length 0%}
{% for d in documents %}
{{ d.intro|markdown }}
{% endfor %}
{% endifnotequal %} {% ifnotequal imagegallery|length 0 %} {% endifnotequal %} {% ifnotequal participants|length 0 %}
{% for p in participants %}
{{ p.name }}
{{ p.title }}
{{ p.short_bio|markdown }}
{% endfor %}
{% endifnotequal %}