{% extends "base.html" %} {% block title %}Alyssa and Ben's Wedding: Update Contact Info{% endblock %} {% block header %}

Update Contact Information

{% endblock %} {% block content %} {% include "return_to_rsvp.html" %}

General contact information:

Mailing Address:
{{ inv_form.full_address }} {{ inv_form.full_address.errors }}
{{ guest_formset.management_form }} {% for form in guest_formset.forms %}

Guest: {{form.instance.full_name}}

{% for field in form %} {% if not field.is_hidden %}
{{ field.label_tag }}
{{ field }} {{ field.errors }}
{% endif %} {% endfor %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% endfor %}
{% include "privacy_common.html" %} {% endblock %}