@@ -18,8 +18,8 @@ great when using some of the most popular CSS frameworks. Each theme is defined
1818in a single Twig template:
1919
2020* `form_div_layout.html.twig `_, wraps each form field inside a ``<div> `` element
21- and it's the theme used by default in Symfony apps unless you configure it as
22- explained later in this article.
21+ and it's the theme used by default in Symfony applications unless you configure
22+ it as explained later in this article.
2323* `form_table_layout.html.twig `_, wraps the entire form inside a ``<table> ``
2424 element and each form field inside a ``<tr> `` element.
2525* `bootstrap_3_layout.html.twig `_, wraps each form field inside a ``<div> ``
@@ -157,9 +157,9 @@ Disabling Global Themes for Single Forms
157157Global form themes defined in the app are always applied to all forms, even
158158those which use the ``form_theme `` tag to apply their own themes. You may want
159159to disable this for example when creating an admin interface for a bundle which
160- can be installed on different Symfony apps (and so you can't control what themes
161- are enabled globally). To do that, add the ``only `` keyword after the list of
162- form themes:
160+ can be installed on different Symfony applications (and so you can't control what
161+ themes are enabled globally). To do that, add the ``only `` keyword after the list
162+ of form themes:
163163
164164.. code-block :: twig
165165
@@ -432,7 +432,7 @@ Creating a Form Theme in a Separate Template
432432~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
433433
434434This is recommended when creating form themes that are used in your entire app
435- or even reused in different Symfony apps . You only need to create a Twig
435+ or even reused in different Symfony applications . You only need to create a Twig
436436template somewhere and follow the :ref: `form fragment naming <form-fragment-naming >`
437437rules to know which Twig blocks to define.
438438
0 commit comments