-
- {{ form_row(form.name) }}
- {% if form.parent%}
- {{ form_row(form.parent) }}
- {% endif %}
- {% if form.not_selectable is defined %}
- {{ form_row(form.not_selectable) }}
- {% endif %}
-
- {% block additional_controls %}{% endblock %}
-
- {% block comment %}
- {{ form_row(form.comment) }}
- {% endblock %}
-
-
- {% block additional_panes %}{% endblock %}
-
-
- {% include "AdminPages/_attachments.html.twig" %}
- {% block master_picture_block %}
- {{ form_row(form.master_picture_attachment) }}
- {% endblock %}
-
-
- {% if entity.parameters is defined %}
-
- {% include "AdminPages/_parameters.html.twig" %}
-
- {% endif %}
-
-
- {{ form_row(form.reset) }}
- {{ form_end(form) }}
-
-
- {# Only include on existing parts #}
+
+
+
+
+ {{ form_start(form) }}
+
+
+
+
+
+
+
+ {{ form_row(form.name) }}
+ {% if form.parent%}
+ {{ form_row(form.parent) }}
+ {% endif %}
+ {% if form.not_selectable is defined %}
+ {{ form_row(form.not_selectable) }}
+ {% endif %}
+
+ {% block additional_controls %}{% endblock %}
+
+ {% block comment %}
+ {{ form_row(form.comment) }}
+ {% endblock %}
+
+
+ {% block additional_panes %}{% endblock %}
+
+
+ {% include "AdminPages/_attachments.html.twig" %}
+ {% block master_picture_block %}
+ {{ form_row(form.master_picture_attachment) }}
+ {% endblock %}
+
+
+ {% if entity.parameters is defined %}
+
+ {% include "AdminPages/_parameters.html.twig" %}
+
+ {% endif %}
+
+
+
+
+ {{ form_row(form.reset) }}
+ {{ form_end(form) }}
+
+
+ {# Only include on existing parts #}
+ {% if entity.id %}
+ {{ include('AdminPages/_duplicate.html.twig') }}
+ {{ include('AdminPages/_delete_form.html.twig') }}
+ {% endif %}
+
+
+
+
+ {% include "AdminPages/_info.html.twig" %}
+
+
+ {% if datatable is defined and datatable is not null %}
+
+ {% include "LogSystem/_log_table.html.twig" %}
+
{% endif %}
+ {% if entity.id %}
+
+ {% include 'AdminPages/_export_form.html.twig' with {'path' : path(route_base ~ '_export', {'id': entity.id})} %}
+
+ {% else %} {# For new element we have a combined import/export tab #}
+
+
+ {{ form_start(import_form) }}
+
+ {{ form_end(import_form) }}
+
+
+
+
+
+
+ {% trans %}mass_creation.help{% endtrans %}
+ {{ form(mass_creation_form) }}
+
+
+
+ {% endif %}