{% extends "events/base.html" %} {% load event_tags %} {% load styled_forms %} {% block title %}{{ block.super }}{% trans "Edit Registration" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% firstof MODULE_EVENTS_LABEL trans 'Event' %} {% trans "Registration Edit" %}

{% trans "Event" %}: {{ reg8n.event.title }}
{% if formset_errors %}
    {% for form in formset.forms %} {{ form.non_field_errors }} {% for field in form %} {% if field.errors %}
  • {{ field.label_tag }}
  • {% endif %} {% endfor %} {% endfor %}
{% endif %}
{% csrf_token %}
{{ formset.management_form }} {% for form in formset.forms %}
{% trans "Registrant" %} #{{ forloop.counter }}:
{{ form|styled_form }}
{% endfor %}
{% endblock %}