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.
我在这里看到有一个可能的树枝模板用于将表单呈现为基于表格的 html。我想知道如何更改一种表单的默认布局,从默认的基于 div 的 html 到基于表的。根据文档,可以这样做:
{% form_theme form 'path_to_template.html.twig' %}
如何包含该树枝模板,我尝试了以下操作:
{% form_theme form 'Twig:Form:form_table_layout.html.twig' %}
但这似乎不起作用。
好的,找到了,你只需要使用
{% form_theme form 'form_table_layout.html.twig' %}
如果您想在整个应用程序中使用表格布局,您可以通过像这样设置默认布局来避免添加form_theme您的每个模板:
form_theme
# app/config/config.yml twig: form: resources: ['form_table_layout.html.twig']
参见Symfony2 食谱