diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 184515e..a7d35f4 100644
a
|
b
|
Django provides a representation of all the basic HTML widgets, plus some
|
17 | 17 | commonly used groups of widgets: |
18 | 18 | |
19 | 19 | .. class:: TextInput |
| 20 | |
20 | 21 | Text input: ``<input type='text' ...>`` |
21 | 22 | |
22 | 23 | .. class:: PasswordInput |
| 24 | |
23 | 25 | Password input: ``<input type='password' ...>`` |
24 | 26 | |
25 | 27 | .. class:: HiddenInput |
| 28 | |
26 | 29 | Hidden input: ``<input type='hidden' ...>`` |
27 | 30 | |
28 | 31 | .. class:: MultipleHiddenInput |
| 32 | |
29 | 33 | Multiple ``<input type='hidden' ...>`` widgets. |
30 | 34 | |
31 | 35 | .. class:: FileInput |
| 36 | |
32 | 37 | File upload input: ``<input type='file' ...>`` |
33 | 38 | |
34 | 39 | .. class:: DateTimeInput |
| 40 | |
35 | 41 | Date/time input as a simple text box: ``<input type='text' ...>`` |
36 | 42 | |
37 | 43 | **New in Django development version:** |
38 | 44 | |
39 | 45 | .. class:: Textarea |
| 46 | |
40 | 47 | Text area: ``<textarea>...</textarea>`` |
41 | 48 | |
42 | 49 | .. class:: CheckboxInput |
| 50 | |
43 | 51 | Checkbox: ``<input type='checkbox' ...>`` |
44 | 52 | |
45 | 53 | .. class:: Select |
| 54 | |
46 | 55 | Select widget: ``<select><option ...>...</select>`` |
47 | 56 | |
48 | 57 | .. class:: NullBooleanSelect |
| 58 | |
49 | 59 | Select widget with options 'Unknown', 'Yes' and 'No' |
50 | 60 | |
51 | 61 | .. class:: SelectMultiple |
| 62 | |
52 | 63 | Select widget allowing multiple selection: ``<select |
53 | 64 | multiple='multiple'>...</select>`` |
54 | 65 | |
55 | 66 | .. class:: RadioSelect |
| 67 | |
56 | 68 | A list of radio buttons: |
57 | 69 | |
58 | 70 | .. code-block:: html |
… |
… |
commonly used groups of widgets:
|
63 | 75 | </ul> |
64 | 76 | |
65 | 77 | .. class:: CheckboxSelectMultiple |
| 78 | |
66 | 79 | A list of checkboxes: |
67 | 80 | |
68 | 81 | .. code-block:: html |
… |
… |
commonly used groups of widgets:
|
73 | 86 | </ul> |
74 | 87 | |
75 | 88 | .. class:: MultiWidget |
| 89 | |
76 | 90 | Wrapper around multiple other widgets |
77 | 91 | |
78 | 92 | .. class:: SplitDateTimeWidget |
| 93 | |
79 | 94 | Wrapper around two ``TextInput`` widgets: one for the date, and one for the |
80 | 95 | time. |
81 | 96 | |