Ticket #8518: 8518.diff

File 8518.diff, 1.8 KB (added by Thejaswi Puthraya, 16 years ago)

Attaching a git-patch of the trunk that removes this problem

  • docs/ref/forms/widgets.txt

    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  
    1717commonly used groups of widgets:
    1818
    1919.. class:: TextInput
     20
    2021    Text input: ``<input type='text' ...>``
    2122
    2223.. class:: PasswordInput
     24
    2325    Password input: ``<input type='password' ...>``
    2426
    2527.. class:: HiddenInput
     28
    2629    Hidden input: ``<input type='hidden' ...>``
    2730
    2831.. class:: MultipleHiddenInput
     32
    2933    Multiple ``<input type='hidden' ...>`` widgets.
    3034
    3135.. class:: FileInput
     36
    3237    File upload input: ``<input type='file' ...>``
    3338
    3439.. class:: DateTimeInput
     40
    3541    Date/time input as a simple text box: ``<input type='text' ...>``
    3642
    3743    **New in Django development version:**
    3844
    3945.. class:: Textarea
     46
    4047    Text area: ``<textarea>...</textarea>``
    4148
    4249.. class:: CheckboxInput
     50
    4351    Checkbox: ``<input type='checkbox' ...>``
    4452
    4553.. class:: Select
     54
    4655    Select widget: ``<select><option ...>...</select>``
    4756
    4857.. class:: NullBooleanSelect
     58
    4959    Select widget with options 'Unknown', 'Yes' and 'No'
    5060
    5161.. class:: SelectMultiple
     62
    5263    Select widget allowing multiple selection: ``<select
    5364    multiple='multiple'>...</select>``
    5465
    5566.. class:: RadioSelect
     67
    5668    A list of radio buttons:
    5769   
    5870    .. code-block:: html
    commonly used groups of widgets:  
    6375        </ul>
    6476
    6577.. class:: CheckboxSelectMultiple
     78
    6679    A list of checkboxes:
    6780   
    6881    .. code-block:: html
    commonly used groups of widgets:  
    7386        </ul>
    7487
    7588.. class:: MultiWidget
     89
    7690    Wrapper around multiple other widgets
    7791
    7892.. class:: SplitDateTimeWidget
     93
    7994    Wrapper around two ``TextInput`` widgets: one for the date, and one for the
    8095    time.
    8196
Back to Top