{% 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{% else %}container-narrow{% endif %}{% endblock %} {% block agenda_custom_header %} {% compress js %} {% endcompress %} {% endblock %} {% block agenda_content %} {% 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" with with_margin=True with_extra=True %}
{% if day_count > 1 %}
{% for day in data %}
{% endfor %}
{% endif %} {% for day in data %} {% if day_count > 1 %} {% endif %}
{% 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 %}