{% extends "agenda/base.html" %} {% load i18n %} {% load staticfiles %} {% block agenda_custom_header %} {% endblock %} {% block agenda_content %} {% if data|length > 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:"DATE_FORMAT" }}

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