{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load static %} {% load phrases %} {% block agenda_content %}
{% blocktranslate trimmed with href=request.event.urls.schedule %} To see our schedule with full functionality, like timezone conversion and personal scheduling, please enable JavaScript and go here. {% endblocktranslate %}
{% if schedule != schedule.event.current_schedule %}
{% if not schedule.version %} {{ phrases.schedule.wip_version }} {% else %} {{ phrases.schedule.old_version }} {% endif %} {% if request.event.current_schedule %} {% phrase "phrases.schedule.current_version" current_url=schedule.event.urls.schedule %} {% endif %}
{% endif %} {% 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 session in day.talks %}
{% ifchanged session.start %}{{ session.start|date:"TIME_FORMAT" }}{% endifchanged %}
{% if not schedule.is_archived and session.submission and not session.submission.is_deleted %} {% endif %} {% include "agenda/session_block.html" %} {% if not schedule.is_archived and session.submission and not session.submission.is_deleted %} {% endif %} {% endfor %} {% else %}
{% blocktranslate with current_day=day.start|date:'DATE_FORMAT' weekday=day.start|date:'l' trimmed %} No sessions on {{ weekday }}, {{ current_day }}. {% endblocktranslate %}
{% endif %}
{% endfor %}
{% endblock %}