{% extends "django_meta_whatsapp/base.html" %} {% block title %}{% if object %}Edit{% else %}Add{% endif %} Contact{% endblock %} {% block page_title %}{% if object %}Edit Contact{% else %}Add Contact{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Contact Details

Enter the contact's phone number and information.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %}
{% if form.phone.errors %}

{{ form.phone.errors|join:", " }}

{% endif %}
{% if form.name.errors %}

{{ form.name.errors|join:", " }}

{% endif %}
{% if form.email.errors %}

{{ form.email.errors|join:", " }}

{% endif %}

Select or type to create new labels

{% if form.labels.errors %}

{{ form.labels.errors|join:", " }}

{% endif %}
{% if form.notes.errors %}

{{ form.notes.errors|join:", " }}

{% endif %}
{% if form.opted_out %}

Contact has opted out of marketing communications.

{% endif %}
Cancel
{% endblock %}