diff --git a/best_practices/forms.rst b/best_practices/forms.rst index 6d70561e914..883f2c8a998 100644 --- a/best_practices/forms.rst +++ b/best_practices/forms.rst @@ -157,29 +157,15 @@ There are a lot of ways to render your form, ranging from rendering the entire thing in one line to rendering each part of each field independently. The best way depends on how much customization you need. -The simplest way - which is especially useful during development - is to render -the form tags manually and then use ``form_widget()`` to render all of the fields: +One of the simplest ways - which is especially useful during development - +is to render the form tags and use ``form_widget()`` to render all of the +fields: .. code-block:: html+jinja -
- -.. best-practice:: - - Don't use the ``form()`` or ``form_start()`` functions to render the - starting and ending form tags. - -Experienced Symfony developers will recognize that we're rendering the ``