{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load static %} {% block container_width %} {% if max_rooms > 6 %}container-wide{% elif max_rooms > 3 %}container-semi-wide{% endif %}{% endblock %} {% block agenda_content %} {% if data|length > 1 %} {% endif %} {% if request.event.settings.use_tracks and request.event.tracks.count > 1 %}
?
{% endif %}
{% 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. {% endblocktrans %} {% endif %} {% if request.event.current_schedule %} {% blocktrans trimmed with current_url=schedule.event.urls.schedule %} You can find the current version here. {% endblocktrans %} {% endif %}
{% endif %}
{% blocktrans trimmed %} You're currently viewing an offline version of the schedule, so it may be outdated. Refresh this page once you have an internet connection to see the current schedule. {% endblocktrans %}
{% include "agenda/header_row.html" %}
{% trans "Version" %} {{ schedule.version|default:"–" }}
{% for day in data %}

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

{% if day.first_start %}
{% for room in day.rooms %}
{{ room.name }}
{% endfor %}
{% else %}
{% blocktrans with current_day=day.start.date|date:'DATE_FORMAT' weekday=day.start.date|date:'l' trimmed %} No talks on {{ weekday }}, {{ current_day }}. {% endblocktrans %}
{% endif %}
{% endfor %}
{% compress js %} {% endcompress %} {% endblock %}