Changed directory structure of forms/inputs slightly

This commit is contained in:
2023-06-01 15:33:24 +01:00
parent 6a9b24a626
commit ff871bdbbf
26 changed files with 27 additions and 27 deletions

View File

@@ -1,11 +1,11 @@
{% extends "@admin/forms/group.html.twig" %}
{% block group_form %}
{% include "forms/partials/input-group-name.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/inputs/group-name.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/partials/input-group-slug.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/inputs/group-slug.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/partials/input-group-icon.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/inputs/group-icon.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/partials/input-group-description.html.twig" with { 'col_width': 'col-sm-12' } %}
{% include "forms/inputs/group-description.html.twig" with { 'col_width': 'col-sm-12' } %}
{% endblock %}