| 41 | | # widget -- A Widget class, or instance of a Widget class, that should be |
|---|
| 42 | | # used for this Field when displaying it. Each Field has a default |
|---|
| 43 | | # Widget that it'll use if you don't specify this. In most cases, |
|---|
| 44 | | # the default widget is TextInput. |
|---|
| 45 | | # label -- A verbose name for this field, for use in displaying this field in |
|---|
| 46 | | # a form. By default, Django will use a "pretty" version of the form |
|---|
| 47 | | # field name, if the Field is part of a Form. |
|---|
| 48 | | # initial -- A value to use in this Field's initial display. This value is |
|---|
| 49 | | # *not* used as a fallback if data isn't given. |
|---|
| | 41 | # widget -- A Widget class, or instance of a Widget class, that should |
|---|
| | 42 | # be used for this Field when displaying it. Each Field has a |
|---|
| | 43 | # default Widget that it'll use if you don't specify this. In |
|---|
| | 44 | # most cases, the default widget is TextInput. |
|---|
| | 45 | # label -- A verbose name for this field, for use in displaying this |
|---|
| | 46 | # field in a form. By default, Django will use a "pretty" |
|---|
| | 47 | # version of the form field name, if the Field is part of a |
|---|
| | 48 | # Form. |
|---|
| | 49 | # initial -- A value to use in this Field's initial display. This value |
|---|
| | 50 | # is *not* used as a fallback if data isn't given. |
|---|