{% extends resolvePath(parentTemplate) %}


{% block additional_styles %}
<link href="{{route('/adminUI/fontawesome/css/all.css')}}" rel="stylesheet">
{% for key, field in fields %}
    {% include resolvePath(configuration[field.type] + '-css') ignore missing %}
{% endfor %}
{% endblock %}
{% block additional_scripts %}
{% for key, field in fields %}
    {% include resolvePath(configuration[field.type] + '-js') ignore missing %}
{% endfor %}
{% endblock %}


{% block body %}
<div class="row w-100 m-0 p-0">
{% for key, field in fields %}
    <div id="field-{{req.params.entityName}}-{{key}}" class="{{ field.uiSettings.editorClasses if field.uiSettings and field.uiSettings.editorClasses else 'col-12 p-0' }} ">
        {% include resolvePath(configuration[field.type]) %}
    </div>
{% endfor %}
</div>


{% endblock %}