I am using symfony2. I am trying to override the default div style form blocks in twig.

First, does any have or know of an available implementation of the fieldset and list (ul -> li) approach?

link|improve this question

65% accept rate
feedback

2 Answers

http://symfony.com/doc/2.0/cookbook/form/form_customization.html

I am not aware of a implementation of thoose, but you are welcome to make them and open a Pull Request.

link|improve this answer
feedback

By default, Twig uses a div layout when rendering forms.However, you can render forms in a table layout. Use the form_table_layout.html.twig resource to use such a layout:

# app/config/config.yml

twig:
    form:
        resources: ['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.