{% extends "AKPlan/plan_detail.html" %} {% load tz %} {% load i18n %} {% block breadcrumbs %} {% include "AKPlan/plan_breadcrumbs.html" %} {% endblock %} {% block encode %} [ {% for slot in slots %} {% if slot.start %} {'title': '{{ slot.ak }} @ {{ slot.room }}', 'start': '{{ slot.start | timezone:event.timezone | date:"Y-m-d H:i:s" }}', 'end': '{{ slot.end | timezone:event.timezone | date:"Y-m-d H:i:s" }}', 'url': '{% url 'submit:ak_detail' event_slug=event.slug pk=slot.ak.pk %}', 'color': '{{ track.color }}', 'borderColor': '{{ slot.ak.category.color }}', }, {% endif %} {% endfor %} ] {% endblock %} {% block content %}

Plan: {{ event }} ({% trans "Track" %}: {{ track }})

{% if not event.plan_hidden or user.is_staff %} {% timezone event.timezone %}
{% endtimezone %} {% else %}

{% trans "Plan is not visible (yet)." %}

{% endif %} {% endblock %}