I see here that there is a possible twig template for rendering a form into table based html. I am wondering though how to change the default layout for one form, from the default div based html to table based. According to the docs it is possible to do:

{% form_theme form 'path_to_template.html.twig' %}

How do I include that twig template, I tried things like:

{% form_theme form 'Twig:Form:form_table_layout.html.twig' %}

but that does not seem to work.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Okay found it, you only have to use

{% form_theme form 'form_table_layout.html.twig' %}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.