{% extends 'admin:admin/change_form.html' %} {% load i18n %} {% load admin_urls %} {% block title %}{{ title }}{% trans 'Set delegated' %} | {% trans 'Jumbo' %}{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans 'Set delegated for contact' %} {{ invite.contact.full_name }} {% trans 'and event' %} {{ invite.event.name }}

{% csrf_token %}
{% for field in form %}
{% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %}
{% endfor %}
{% endblock %}