Added custom choice form type for tree structure entities.

This commit is contained in:
Jan Böhmer 2019-08-13 23:04:06 +02:00
parent 568367b59e
commit cfa807c621
7 changed files with 203 additions and 16 deletions

View file

@ -67,9 +67,11 @@
<div class="tab-pane active" id="home_common">
{{ form_row(form.name) }}
{% if form.parent%}
{{ form_row(form.parent) }}
{{ form_row(form.parent) }}
{% endif %}
{% if form.not_selectable is defined %}
{{ form_row(form.not_selectable) }}
{% endif %}
{{ form_row(form.not_selectable) }}
{% block additional_controls %}{% endblock %}