Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこれを使用しようとしています
{% if not app.request.isXmlHttpRequest %} {% block body %} <div>{{ form_widget(form) }}</div> {% endif %}
そして、ブロックタグの後に予期しないenfifタグというエラーが発生します
おそらく、終了{% endblock %}タグを追加してみてください。
{% endblock %}
{% if not app.request.isXmlHttpRequest %} {% block body %} <div>{{ form_widget(form) }}</div> {% endblock %} {% endif %}