diff options
| author | Daniele Procida <daniele@vurt.org> | 2014-06-08 19:30:52 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-06-24 14:58:53 -0400 |
| commit | 60375eda324d708870dc2ba18b4ac4d6114a68f6 (patch) | |
| tree | cb71d7390ce4b45bdf27ba5000100d095ce97b0d /docs/ref | |
| parent | 088b30f49b0f5e14fc6876eb424af340d5479dac (diff) | |
[1.7.x] Fixed #22796 -- Added a more basic explanations of forms.
Thanks bmispelon, kezabelle, jorgecarleitao, and timgraham for reviews.
Backport of cd20b5d186 from master
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/forms/api.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt index 4fef753172..3b687ed73d 100644 --- a/docs/ref/forms/api.txt +++ b/docs/ref/forms/api.txt @@ -365,6 +365,8 @@ You can write code to perform validation for particular form fields (based on their name) or for the form as a whole (considering combinations of various fields). More information about this is in :doc:`/ref/forms/validation`. +.. _ref-forms-api-outputting-html: + Outputting forms as HTML ------------------------ @@ -481,6 +483,8 @@ it calls its ``as_table()`` method behind the scenes:: <tr><th><label for="id_sender">Sender:</label></th><td><input type="email" name="sender" id="id_sender" /></td></tr> <tr><th><label for="id_cc_myself">Cc myself:</label></th><td><input type="checkbox" name="cc_myself" id="id_cc_myself" /></td></tr> +.. _ref-forms-api-styling-form-rows: + Styling required or erroneous form rows ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
