{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load staticfiles %} {% block content %}
{% if schedule != schedule.event.current_schedule %}
{% if not schedule.version %} {{ phrases.agenda.schedule_editable }} {% else %} {% blocktrans trimmed with current_url=schedule.event.urls.schedule %} You are currently viewing an older schedule version. You may find the current version here. {% endblocktrans %} {% endif %}
{% endif %}
{% trans "Version" %} {{ schedule.version }} · · ·
{% for day in data %}

{{ day.start.date|date:"DATE_FORMAT" }}

{% if day.first_start %}
{{ day.start.date|date:"c" }} {% for room in day.rooms %}
{{ room.name }}
{% endfor %}
{% for hour in day.hours %}
{{ hour }}
{% endfor %}
{% for room in day.rooms %} {% endfor %}
{% else %}
{% blocktrans with day.start.date as current_day trimmed %} No talks on {{ current_day }}. {% endblocktrans %}
{% endif %}
{% endfor %}
{% endblock %}