{% extends "django_meta_whatsapp/base.html" %} {% block title %}{% if object %}Edit Opt-in Link{% else %}New Opt-in Link{% endif %}{% endblock %} {% block page_title %}{% if object %}Edit Opt-in Link{% else %}New Opt-in Link{% endif %}{% endblock %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% for field in form %}
{% if field.name == 'auto_add_to_label' %}
{% elif field.name == 'signup_message' or field.name == 'confirmation_message' %} {% else %} {% endif %} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors.0 }}

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