templates/entity.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     {% if editEntityForm is defined %}
  4.         {{ form(editEntityForm) }}
  5.     {% endif %}
  6.     {% if entityForms is defined %}
  7.         {% for entityForm in entityForms %}
  8.             {{ form(entityForm) }}
  9.         {% endfor %}
  10.     {% endif %}
  11. {% endblock %}