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

{% trans "Event" %}: {{ 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 %}
{% for field in update_form %}

{{ field.label_tag }}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %}

{% endfor %}
{{ form.non_field_errors }}
{% else %}
{% csrf_token %}
{% for field in login_form %}

{{ field.label_tag }}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %}

{% endfor %}
{{ form.non_field_errors }}
{% endif %} {% endblock %}