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

{% trans "Event" %}: {{ event.name }}

{{ grid | safe }} {% 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 %}