{% extends "layout.html" %} {% from "macros.html" import render_form %} {% block title %}Statements{% endblock %} {% block additional_js %} {% endblock %} {% block content %} {% for statements, event in meta %} {% if mode == "all" or mode == "past" %} {% endif %} {% if mode == "all" or mode == "past" %} {% for statement, speaker in statements %} {% if mode == "all" %} {% elif mode == "past" %} {% endif %} {% endfor %} {% elif mode == "pending" %} {% for statement, speaker, count in statements %} {% if not statement.executed %} {% endif %} {% endfor %} {% endif %}
Speaker for {{ event.name }}Time
{{ speaker.name }} {{ statement.insertion_time.strftime("%d. %B %Y, %H:%M") }} {{ statement.execution_time.strftime("%d. %B %Y, %H:%M") }}
{{ speaker.name }}
{% endfor %} {% endblock %}