{% extends "formunculous/builder_base.html" %} {% load i18n %} {% block extrastyle %}{{ block.super }} {{ forms.media }} {% endblock %} {% block extrahead %}{{ block.super }} {% if is_parent %} {% endif %} {% endblock %} {% block title %} {% trans "Editing Form for " %} {{ ad.name }} {% endblock %} {% block content %}

{% trans "Editing Form for " %} {{ ad.name }}

{% if is_parent %} {% include "formunculous/includes/sub_app_dialogs.html" %} {% endif %}

{% trans "Field Types" %}


{% trans "Drag the desired field type above to the list on the right to add a new field to the form." %}
{% csrf_token %}
{{ formset.management_form }} {% if formset.errors %}
{% trans "There are errors in your form, please correct them" %}
{% endif %}
    {% for form in formset.forms %} {% include "formunculous/includes/fd_fields.html" %} {% endfor %}
{% if is_parent %} {% include "formunculous/includes/sub_app_table.html" %} {% endif %}
{% endblock %}