File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -462,16 +462,16 @@ Let's take a look at each part:
462
462
* ``form_enctype(form) `` - If at least one field is a file upload field, this
463
463
renders the obligatory ``enctype="multipart/form-data" ``;
464
464
465
- * ``form_errors(form) `` - This will render any errors global to the whole form
465
+ * ``form_errors(form) `` - Renders any errors global to the whole form
466
466
(field-specific errors are displayed next to each field);
467
467
468
468
* ``form_row(form.price) `` - Renders the label, any errors, and the HTML
469
469
form widget for the given field (e.g. ``price ``);
470
470
471
- * ``form_rest(form) `` - This renders any fields that have not yet been rendered
472
- and is usually a good idea to place at the bottom of each form (in case
473
- you forgot to output a field or don't want to bother manually rendering
474
- hidden fields).
471
+ * ``form_rest(form) `` - Renders any fields that have not yet been rendered.
472
+ It's usually a good idea to place a call to this helper at the bottom of
473
+ each form (in case you forgot to output a field or don't want to bother
474
+ manually rendering hidden fields).
475
475
476
476
The majority of the work is done by the ``form_row `` helper, which renders
477
477
the label, errors and HTML form widget of each field inside a ``div `` tag
You can’t perform that action at this time.
0 commit comments