{% load i18n fobi_tags %}

{% trans "Edit form" %}

{% trans "Elements" %}
{% trans "Handlers" %}
{% trans "Properties" %}
{% trans "Service" %}

{% trans "Add elements to your form" %}

{% trans "Choose form element to add" %}
    {% for group, plugins in user_form_element_plugins.items %} {% if not forloop.first %}
  • {% endif %}
  • {{ group }}
  • {% for form_element_uid, form_element_name in plugins %}
  • {{ form_element_name }}
  • {% endfor %} {% endfor %}
{% csrf_token %} {% with assembled_form as form %} {% include fobi_theme.form_snippet_template_name %} {% endwith %} {{ form_element_entry_formset.management_form }} {% comment %} {% with form_element_entry_formset as form %} {% include fobi_theme.form_snippet_template_name %} {% endwith %} {% endcomment %}

{% trans "Add handlers to your form" %}

{% trans "Choose form handler to add" %}
{% if form_handlers %} {##} {% for form_handler in form_handlers %} {% with form_handler.get_plugin as plugin %} {% if plugin %} {% endif %} {% endwith %} {% endfor %}
{% trans "Handler" %}{% trans "Settings" %}{% trans "Actions" %}
{{ form_handler.plugin_name }} {% if form_handler.plugin_data %} ? {% endif %}
    {% if form_handler.plugin_data %}
  • {% trans "Edit" %}
  • {% endif %}
  • {% trans "Delete" %}
  • {% get_fobi_form_handler_plugin_custom_actions plugin form_entry as form_handler_plugin_custom_actions %} {#% for action in plugin.get_custom_actions %#} {% for action in form_handler_plugin_custom_actions %}
  • {{ action.1 }}
  • {% endfor %}
{% endif %}

{% trans "Form properties" %}

{% csrf_token %} {% include fobi_theme.form_properties_snippet_template_name %}

{% trans "Service" %}

{% trans "Export your form as JSON" %}

{% trans "Export your form into JSON format and import it again any time!" %}

{% trans "Export form" %}

{% trans "Delete your form" %}

{% trans "Once deleted, can't be undone!" %}

{% trans "Delete form" %}