@@ -18,8 +18,8 @@ great when using some of the most popular CSS frameworks. Each theme is defined
18
18
in a single Twig template:
19
19
20
20
* `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.
23
23
* `form_table_layout.html.twig `_, wraps the entire form inside a ``<table> ``
24
24
element and each form field inside a ``<tr> `` element.
25
25
* `bootstrap_3_layout.html.twig `_, wraps each form field inside a ``<div> ``
@@ -157,9 +157,9 @@ Disabling Global Themes for Single Forms
157
157
Global form themes defined in the app are always applied to all forms, even
158
158
those which use the ``form_theme `` tag to apply their own themes. You may want
159
159
to 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:
163
163
164
164
.. code-block :: twig
165
165
@@ -432,7 +432,7 @@ Creating a Form Theme in a Separate Template
432
432
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
433
433
434
434
This 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
436
436
template somewhere and follow the :ref: `form fragment naming <form-fragment-naming >`
437
437
rules to know which Twig blocks to define.
438
438
0 commit comments