base_standard_edit_field.html.twig 754 B

123456789101112131415161718192021222324
  1. {#
  2. This file is part of the Sonata package.
  3. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. <div id="sonata-ba-field-container-{{ admin.uniqid }}-{{ field_element.id}}">
  8. {% block label %}{{ form_label(field_element) }} <br />{% endblock %}
  9. <div class="sonata-ba-field sonata-ba-field-{{ edit }}-{{ inline }} {% if field_element.haserrors %}sonata-ba-field-error{% endif %}">
  10. {% block field %}{{ form_field(field_element) }}{% endblock %}
  11. <div class="sonata-ba-field-error-messages">
  12. {% block errors %}{{ form_errors(field_element) }}{% endblock %}
  13. </div>
  14. </div>
  15. </div>