{% extends "zitap/index.html" %} {% load static %} {% load i18n %} {% block title %}{{ event.name }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ event.name }}

{% for day in grid.days %}
{{ day.date|date:"M d" }}
{% for slot in day.slots %}
{% if slot.is_full_hour %}
{{ slot.time|date:"H:i" }}
{% endif %}
{% endfor %}
{% endfor %}
{% if update_form %}
{% csrf_token %} {{ update_form.as_table }}
{% else %}
{% csrf_token %} {{ login_form.as_table }}
{% endif %} {% endblock %}