fields.txt 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654
  1. ===========
  2. Form fields
  3. ===========
  4. .. module:: django.forms.fields
  5. :synopsis: Django's built-in form fields.
  6. .. currentmodule:: django.forms
  7. .. class:: Field
  8. When you create a ``Form`` class, the most important part is defining the
  9. fields of the form. Each field has custom validation logic, along with a few
  10. other hooks.
  11. .. method:: Field.clean(value)
  12. Although the primary way you'll use ``Field`` classes is in ``Form`` classes,
  13. you can also instantiate them and use them directly to get a better idea of
  14. how they work. Each ``Field`` instance has a ``clean()`` method, which takes
  15. a single argument and either raises a
  16. ``django.core.exceptions.ValidationError`` exception or returns the clean
  17. value:
  18. .. code-block:: pycon
  19. >>> from django import forms
  20. >>> f = forms.EmailField()
  21. >>> f.clean("foo@example.com")
  22. 'foo@example.com'
  23. >>> f.clean("invalid email address")
  24. Traceback (most recent call last):
  25. ...
  26. ValidationError: ['Enter a valid email address.']
  27. .. _core-field-arguments:
  28. Core field arguments
  29. ====================
  30. Each ``Field`` class constructor takes at least these arguments. Some
  31. ``Field`` classes take additional, field-specific arguments, but the following
  32. should *always* be accepted:
  33. ``required``
  34. ------------
  35. .. attribute:: Field.required
  36. By default, each ``Field`` class assumes the value is required, so if you pass
  37. an empty value -- either ``None`` or the empty string (``""``) -- then
  38. ``clean()`` will raise a ``ValidationError`` exception:
  39. .. code-block:: pycon
  40. >>> from django import forms
  41. >>> f = forms.CharField()
  42. >>> f.clean("foo")
  43. 'foo'
  44. >>> f.clean("")
  45. Traceback (most recent call last):
  46. ...
  47. ValidationError: ['This field is required.']
  48. >>> f.clean(None)
  49. Traceback (most recent call last):
  50. ...
  51. ValidationError: ['This field is required.']
  52. >>> f.clean(" ")
  53. ' '
  54. >>> f.clean(0)
  55. '0'
  56. >>> f.clean(True)
  57. 'True'
  58. >>> f.clean(False)
  59. 'False'
  60. To specify that a field is *not* required, pass ``required=False`` to the
  61. ``Field`` constructor:
  62. .. code-block:: pycon
  63. >>> f = forms.CharField(required=False)
  64. >>> f.clean("foo")
  65. 'foo'
  66. >>> f.clean("")
  67. ''
  68. >>> f.clean(None)
  69. ''
  70. >>> f.clean(0)
  71. '0'
  72. >>> f.clean(True)
  73. 'True'
  74. >>> f.clean(False)
  75. 'False'
  76. If a ``Field`` has ``required=False`` and you pass ``clean()`` an empty value,
  77. then ``clean()`` will return a *normalized* empty value rather than raising
  78. ``ValidationError``. For ``CharField``, this will return
  79. :attr:`~CharField.empty_value` which defaults to an empty string. For other
  80. ``Field`` classes, it might be ``None``. (This varies from field to field.)
  81. Widgets of required form fields have the ``required`` HTML attribute. Set the
  82. :attr:`Form.use_required_attribute` attribute to ``False`` to disable it. The
  83. ``required`` attribute isn't included on forms of formsets because the browser
  84. validation may not be correct when adding and deleting formsets.
  85. ``label``
  86. ---------
  87. .. attribute:: Field.label
  88. The ``label`` argument lets you specify the "human-friendly" label for this
  89. field. This is used when the ``Field`` is displayed in a ``Form``.
  90. As explained in "Outputting forms as HTML" above, the default label for a
  91. ``Field`` is generated from the field name by converting all underscores to
  92. spaces and upper-casing the first letter. Specify ``label`` if that default
  93. behavior doesn't result in an adequate label.
  94. Here's a full example ``Form`` that implements ``label`` for two of its fields.
  95. We've specified ``auto_id=False`` to simplify the output:
  96. .. code-block:: pycon
  97. >>> from django import forms
  98. >>> class CommentForm(forms.Form):
  99. ... name = forms.CharField(label="Your name")
  100. ... url = forms.URLField(label="Your website", required=False)
  101. ... comment = forms.CharField()
  102. ...
  103. >>> f = CommentForm(auto_id=False)
  104. >>> print(f)
  105. <div>Your name:<input type="text" name="name" required></div>
  106. <div>Your website:<input type="url" name="url"></div>
  107. <div>Comment:<input type="text" name="comment" required></div>
  108. ``label_suffix``
  109. ----------------
  110. .. attribute:: Field.label_suffix
  111. The ``label_suffix`` argument lets you override the form's
  112. :attr:`~django.forms.Form.label_suffix` on a per-field basis:
  113. .. code-block:: pycon
  114. >>> class ContactForm(forms.Form):
  115. ... age = forms.IntegerField()
  116. ... nationality = forms.CharField()
  117. ... captcha_answer = forms.IntegerField(label="2 + 2", label_suffix=" =")
  118. ...
  119. >>> f = ContactForm(label_suffix="?")
  120. >>> print(f)
  121. <div><label for="id_age">Age?</label><input type="number" name="age" required id="id_age"></div>
  122. <div><label for="id_nationality">Nationality?</label><input type="text" name="nationality" required id="id_nationality"></div>
  123. <div><label for="id_captcha_answer">2 + 2 =</label><input type="number" name="captcha_answer" required id="id_captcha_answer"></div>
  124. ``initial``
  125. -----------
  126. .. attribute:: Field.initial
  127. The ``initial`` argument lets you specify the initial value to use when
  128. rendering this ``Field`` in an unbound ``Form``.
  129. To specify dynamic initial data, see the :attr:`Form.initial` parameter.
  130. The use-case for this is when you want to display an "empty" form in which a
  131. field is initialized to a particular value. For example:
  132. .. code-block:: pycon
  133. >>> from django import forms
  134. >>> class CommentForm(forms.Form):
  135. ... name = forms.CharField(initial="Your name")
  136. ... url = forms.URLField(initial="http://")
  137. ... comment = forms.CharField()
  138. ...
  139. >>> f = CommentForm(auto_id=False)
  140. >>> print(f)
  141. <div>Name:<input type="text" name="name" value="Your name" required></div>
  142. <div>Url:<input type="url" name="url" value="http://" required></div>
  143. <div>Comment:<input type="text" name="comment" required></div>
  144. You may be thinking, why not just pass a dictionary of the initial values as
  145. data when displaying the form? Well, if you do that, you'll trigger validation,
  146. and the HTML output will include any validation errors:
  147. .. code-block:: pycon
  148. >>> class CommentForm(forms.Form):
  149. ... name = forms.CharField()
  150. ... url = forms.URLField()
  151. ... comment = forms.CharField()
  152. ...
  153. >>> default_data = {"name": "Your name", "url": "http://"}
  154. >>> f = CommentForm(default_data, auto_id=False)
  155. >>> print(f)
  156. <div>Name:
  157. <input type="text" name="name" value="Your name" required>
  158. </div>
  159. <div>Url:
  160. <ul class="errorlist"><li>Enter a valid URL.</li></ul>
  161. <input type="url" name="url" value="http://" required aria-invalid="true">
  162. </div>
  163. <div>Comment:
  164. <ul class="errorlist"><li>This field is required.</li></ul>
  165. <input type="text" name="comment" required aria-invalid="true">
  166. </div>
  167. This is why ``initial`` values are only displayed for unbound forms. For bound
  168. forms, the HTML output will use the bound data.
  169. Also note that ``initial`` values are *not* used as "fallback" data in
  170. validation if a particular field's value is not given. ``initial`` values are
  171. *only* intended for initial form display:
  172. .. code-block:: pycon
  173. >>> class CommentForm(forms.Form):
  174. ... name = forms.CharField(initial="Your name")
  175. ... url = forms.URLField(initial="http://")
  176. ... comment = forms.CharField()
  177. ...
  178. >>> data = {"name": "", "url": "", "comment": "Foo"}
  179. >>> f = CommentForm(data)
  180. >>> f.is_valid()
  181. False
  182. # The form does *not* fall back to using the initial values.
  183. >>> f.errors
  184. {'url': ['This field is required.'], 'name': ['This field is required.']}
  185. Instead of a constant, you can also pass any callable:
  186. .. code-block:: pycon
  187. >>> import datetime
  188. >>> class DateForm(forms.Form):
  189. ... day = forms.DateField(initial=datetime.date.today)
  190. ...
  191. >>> print(DateForm())
  192. <div><label for="id_day">Day:</label><input type="text" name="day" value="2023-02-11" required id="id_day"></div>
  193. The callable will be evaluated only when the unbound form is displayed, not when it is defined.
  194. ``widget``
  195. ----------
  196. .. attribute:: Field.widget
  197. The ``widget`` argument lets you specify a ``Widget`` class to use when
  198. rendering this ``Field``. See :doc:`/ref/forms/widgets` for more information.
  199. ``help_text``
  200. -------------
  201. .. attribute:: Field.help_text
  202. The ``help_text`` argument lets you specify descriptive text for this
  203. ``Field``. If you provide ``help_text``, it will be displayed next to the
  204. ``Field`` when the ``Field`` is rendered by one of the convenience ``Form``
  205. methods (e.g., ``as_ul()``).
  206. Like the model field's :attr:`~django.db.models.Field.help_text`, this value
  207. isn't HTML-escaped in automatically-generated forms.
  208. Here's a full example ``Form`` that implements ``help_text`` for two of its
  209. fields. We've specified ``auto_id=False`` to simplify the output:
  210. .. code-block:: pycon
  211. >>> from django import forms
  212. >>> class HelpTextContactForm(forms.Form):
  213. ... subject = forms.CharField(max_length=100, help_text="100 characters max.")
  214. ... message = forms.CharField()
  215. ... sender = forms.EmailField(help_text="A valid email address, please.")
  216. ... cc_myself = forms.BooleanField(required=False)
  217. ...
  218. >>> f = HelpTextContactForm(auto_id=False)
  219. >>> print(f)
  220. <div>Subject:<div class="helptext">100 characters max.</div><input type="text" name="subject" maxlength="100" required></div>
  221. <div>Message:<input type="text" name="message" required></div>
  222. <div>Sender:<div class="helptext">A valid email address, please.</div><input type="email" name="sender" required></div>
  223. <div>Cc myself:<input type="checkbox" name="cc_myself"></div>
  224. When a field has help text and the widget is not rendered in a ``<fieldset>``,
  225. ``aria-describedby`` is added to the ``<input>`` to associate it to the
  226. help text:
  227. .. code-block:: pycon
  228. >>> from django import forms
  229. >>> class UserForm(forms.Form):
  230. ... username = forms.CharField(max_length=255, help_text="e.g., user@example.com")
  231. ...
  232. >>> f = UserForm()
  233. >>> print(f)
  234. <div>
  235. <label for="id_username">Username:</label>
  236. <div class="helptext" id="id_username_helptext">e.g., user@example.com</div>
  237. <input type="text" name="username" maxlength="255" required aria-describedby="id_username_helptext" id="id_username">
  238. </div>
  239. When adding a custom ``aria-describedby`` attribute, make sure to also include
  240. the ``id`` of the ``help_text`` element (if used) in the desired order. For
  241. screen reader users, descriptions will be read in their order of appearance
  242. inside ``aria-describedby``:
  243. .. code-block:: pycon
  244. >>> class UserForm(forms.Form):
  245. ... username = forms.CharField(
  246. ... max_length=255,
  247. ... help_text="e.g., user@example.com",
  248. ... widget=forms.TextInput(
  249. ... attrs={"aria-describedby": "custom-description id_username_helptext"},
  250. ... ),
  251. ... )
  252. ...
  253. >>> f = UserForm()
  254. >>> print(f["username"])
  255. <input type="text" name="username" aria-describedby="custom-description id_username_helptext" maxlength="255" id="id_username" required>
  256. .. versionchanged:: 5.0
  257. ``aria-describedby`` was added to associate ``help_text`` with its input.
  258. ``error_messages``
  259. ------------------
  260. .. attribute:: Field.error_messages
  261. The ``error_messages`` argument lets you override the default messages that the
  262. field will raise. Pass in a dictionary with keys matching the error messages you
  263. want to override. For example, here is the default error message:
  264. .. code-block:: pycon
  265. >>> from django import forms
  266. >>> generic = forms.CharField()
  267. >>> generic.clean("")
  268. Traceback (most recent call last):
  269. ...
  270. ValidationError: ['This field is required.']
  271. And here is a custom error message:
  272. .. code-block:: pycon
  273. >>> name = forms.CharField(error_messages={"required": "Please enter your name"})
  274. >>> name.clean("")
  275. Traceback (most recent call last):
  276. ...
  277. ValidationError: ['Please enter your name']
  278. In the `built-in Field classes`_ section below, each ``Field`` defines the
  279. error message keys it uses.
  280. ``validators``
  281. --------------
  282. .. attribute:: Field.validators
  283. The ``validators`` argument lets you provide a list of validation functions
  284. for this field.
  285. See the :doc:`validators documentation </ref/validators>` for more information.
  286. ``localize``
  287. ------------
  288. .. attribute:: Field.localize
  289. The ``localize`` argument enables the localization of form data input, as well
  290. as the rendered output.
  291. See the :doc:`format localization </topics/i18n/formatting>` documentation for
  292. more information.
  293. ``disabled``
  294. ------------
  295. .. attribute:: Field.disabled
  296. The ``disabled`` boolean argument, when set to ``True``, disables a form field
  297. using the ``disabled`` HTML attribute so that it won't be editable by users.
  298. Even if a user tampers with the field's value submitted to the server, it will
  299. be ignored in favor of the value from the form's initial data.
  300. ``template_name``
  301. -----------------
  302. .. attribute:: Field.template_name
  303. .. versionadded:: 5.0
  304. The ``template_name`` argument allows a custom template to be used when the
  305. field is rendered with :meth:`~django.forms.BoundField.as_field_group`. By
  306. default this value is set to ``"django/forms/field.html"``. Can be changed per
  307. field by overriding this attribute or more generally by overriding the default
  308. template, see also :ref:`overriding-built-in-field-templates`.
  309. Checking if the field data has changed
  310. ======================================
  311. ``has_changed()``
  312. -----------------
  313. .. method:: Field.has_changed()
  314. The ``has_changed()`` method is used to determine if the field value has changed
  315. from the initial value. Returns ``True`` or ``False``.
  316. See the :class:`Form.has_changed()` documentation for more information.
  317. .. _built-in-fields:
  318. Built-in ``Field`` classes
  319. ==========================
  320. Naturally, the ``forms`` library comes with a set of ``Field`` classes that
  321. represent common validation needs. This section documents each built-in field.
  322. For each field, we describe the default widget used if you don't specify
  323. ``widget``. We also specify the value returned when you provide an empty value
  324. (see the section on ``required`` above to understand what that means).
  325. ``BooleanField``
  326. ----------------
  327. .. class:: BooleanField(**kwargs)
  328. * Default widget: :class:`CheckboxInput`
  329. * Empty value: ``False``
  330. * Normalizes to: A Python ``True`` or ``False`` value.
  331. * Validates that the value is ``True`` (e.g. the check box is checked) if
  332. the field has ``required=True``.
  333. * Error message keys: ``required``
  334. .. note::
  335. Since all ``Field`` subclasses have ``required=True`` by default, the
  336. validation condition here is important. If you want to include a boolean
  337. in your form that can be either ``True`` or ``False`` (e.g. a checked or
  338. unchecked checkbox), you must remember to pass in ``required=False`` when
  339. creating the ``BooleanField``.
  340. ``CharField``
  341. -------------
  342. .. class:: CharField(**kwargs)
  343. * Default widget: :class:`TextInput`
  344. * Empty value: Whatever you've given as :attr:`empty_value`.
  345. * Normalizes to: A string.
  346. * Uses :class:`~django.core.validators.MaxLengthValidator` and
  347. :class:`~django.core.validators.MinLengthValidator` if ``max_length`` and
  348. ``min_length`` are provided. Otherwise, all inputs are valid.
  349. * Error message keys: ``required``, ``max_length``, ``min_length``
  350. Has the following optional arguments for validation:
  351. .. attribute:: max_length
  352. .. attribute:: min_length
  353. If provided, these arguments ensure that the string is at most or at
  354. least the given length.
  355. .. attribute:: strip
  356. If ``True`` (default), the value will be stripped of leading and
  357. trailing whitespace.
  358. .. attribute:: empty_value
  359. The value to use to represent "empty". Defaults to an empty string.
  360. ``ChoiceField``
  361. ---------------
  362. .. class:: ChoiceField(**kwargs)
  363. * Default widget: :class:`Select`
  364. * Empty value: ``''`` (an empty string)
  365. * Normalizes to: A string.
  366. * Validates that the given value exists in the list of choices.
  367. * Error message keys: ``required``, ``invalid_choice``
  368. The ``invalid_choice`` error message may contain ``%(value)s``, which will be
  369. replaced with the selected choice.
  370. Takes one extra argument:
  371. .. attribute:: choices
  372. Either an :term:`iterable` of 2-tuples to use as choices for this
  373. field, :ref:`enumeration type <field-choices-enum-types>`, or a
  374. callable that returns such an iterable. This argument accepts the same
  375. formats as the ``choices`` argument to a model field. See the
  376. :ref:`model field reference documentation on choices <field-choices>`
  377. for more details. If the argument is a callable, it is evaluated each
  378. time the field's form is initialized, in addition to during rendering.
  379. Defaults to an empty list.
  380. .. admonition:: Choice type
  381. This field normalizes choices to strings, so if choices are required in
  382. other data types, such as integers or booleans, consider using
  383. :class:`TypedChoiceField` instead.
  384. .. versionchanged:: 5.0
  385. Support for mappings and using
  386. :ref:`enumeration types <field-choices-enum-types>` directly in
  387. ``choices`` was added.
  388. ``DateField``
  389. -------------
  390. .. class:: DateField(**kwargs)
  391. * Default widget: :class:`DateInput`
  392. * Empty value: ``None``
  393. * Normalizes to: A Python ``datetime.date`` object.
  394. * Validates that the given value is either a ``datetime.date``,
  395. ``datetime.datetime`` or string formatted in a particular date format.
  396. * Error message keys: ``required``, ``invalid``
  397. Takes one optional argument:
  398. .. attribute:: input_formats
  399. An iterable of formats used to attempt to convert a string to a valid
  400. ``datetime.date`` object.
  401. If no ``input_formats`` argument is provided, the default input formats are
  402. taken from the active locale format ``DATE_INPUT_FORMATS`` key, or from
  403. :setting:`DATE_INPUT_FORMATS` if localization is disabled. See also
  404. :doc:`format localization </topics/i18n/formatting>`.
  405. ``DateTimeField``
  406. -----------------
  407. .. class:: DateTimeField(**kwargs)
  408. * Default widget: :class:`DateTimeInput`
  409. * Empty value: ``None``
  410. * Normalizes to: A Python ``datetime.datetime`` object.
  411. * Validates that the given value is either a ``datetime.datetime``,
  412. ``datetime.date`` or string formatted in a particular datetime format.
  413. * Error message keys: ``required``, ``invalid``
  414. Takes one optional argument:
  415. .. attribute:: input_formats
  416. An iterable of formats used to attempt to convert a string to a valid
  417. ``datetime.datetime`` object, in addition to ISO 8601 formats.
  418. The field always accepts strings in ISO 8601 formatted dates or similar
  419. recognized by :func:`~django.utils.dateparse.parse_datetime`. Some examples
  420. are:
  421. * ``'2006-10-25 14:30:59'``
  422. * ``'2006-10-25T14:30:59'``
  423. * ``'2006-10-25 14:30'``
  424. * ``'2006-10-25T14:30'``
  425. * ``'2006-10-25T14:30Z'``
  426. * ``'2006-10-25T14:30+02:00'``
  427. * ``'2006-10-25'``
  428. If no ``input_formats`` argument is provided, the default input formats are
  429. taken from the active locale format ``DATETIME_INPUT_FORMATS`` and
  430. ``DATE_INPUT_FORMATS`` keys, or from :setting:`DATETIME_INPUT_FORMATS` and
  431. :setting:`DATE_INPUT_FORMATS` if localization is disabled. See also
  432. :doc:`format localization </topics/i18n/formatting>`.
  433. ``DecimalField``
  434. ----------------
  435. .. class:: DecimalField(**kwargs)
  436. * Default widget: :class:`NumberInput` when :attr:`Field.localize` is
  437. ``False``, else :class:`TextInput`.
  438. * Empty value: ``None``
  439. * Normalizes to: A Python ``decimal``.
  440. * Validates that the given value is a decimal. Uses
  441. :class:`~django.core.validators.MaxValueValidator` and
  442. :class:`~django.core.validators.MinValueValidator` if ``max_value`` and
  443. ``min_value`` are provided. Uses
  444. :class:`~django.core.validators.StepValueValidator` if ``step_size`` is
  445. provided. Leading and trailing whitespace is ignored.
  446. * Error message keys: ``required``, ``invalid``, ``max_value``,
  447. ``min_value``, ``max_digits``, ``max_decimal_places``,
  448. ``max_whole_digits``, ``step_size``.
  449. The ``max_value`` and ``min_value`` error messages may contain
  450. ``%(limit_value)s``, which will be substituted by the appropriate limit.
  451. Similarly, the ``max_digits``, ``max_decimal_places`` and
  452. ``max_whole_digits`` error messages may contain ``%(max)s``.
  453. Takes five optional arguments:
  454. .. attribute:: max_value
  455. .. attribute:: min_value
  456. These control the range of values permitted in the field, and should be
  457. given as ``decimal.Decimal`` values.
  458. .. attribute:: max_digits
  459. The maximum number of digits (those before the decimal point plus those
  460. after the decimal point, with leading zeros stripped) permitted in the
  461. value.
  462. .. attribute:: decimal_places
  463. The maximum number of decimal places permitted.
  464. .. attribute:: step_size
  465. Limit valid inputs to an integral multiple of ``step_size``. If
  466. ``min_value`` is also provided, it's added as an offset to determine if
  467. the step size matches.
  468. ``DurationField``
  469. -----------------
  470. .. class:: DurationField(**kwargs)
  471. * Default widget: :class:`TextInput`
  472. * Empty value: ``None``
  473. * Normalizes to: A Python :class:`~python:datetime.timedelta`.
  474. * Validates that the given value is a string which can be converted into a
  475. ``timedelta``. The value must be between :attr:`datetime.timedelta.min`
  476. and :attr:`datetime.timedelta.max`.
  477. * Error message keys: ``required``, ``invalid``, ``overflow``.
  478. Accepts any format understood by
  479. :func:`~django.utils.dateparse.parse_duration`.
  480. ``EmailField``
  481. --------------
  482. .. class:: EmailField(**kwargs)
  483. * Default widget: :class:`EmailInput`
  484. * Empty value: Whatever you've given as ``empty_value``.
  485. * Normalizes to: A string.
  486. * Uses :class:`~django.core.validators.EmailValidator` to validate that
  487. the given value is a valid email address, using a moderately complex
  488. regular expression.
  489. * Error message keys: ``required``, ``invalid``
  490. Has the optional arguments ``max_length``, ``min_length``, and
  491. ``empty_value`` which work just as they do for :class:`CharField`. The
  492. ``max_length`` argument defaults to 320 (see :rfc:`3696#section-3`).
  493. .. versionchanged:: 3.2.20
  494. The default value for ``max_length`` was changed to 320 characters.
  495. ``FileField``
  496. -------------
  497. .. class:: FileField(**kwargs)
  498. * Default widget: :class:`ClearableFileInput`
  499. * Empty value: ``None``
  500. * Normalizes to: An ``UploadedFile`` object that wraps the file content
  501. and file name into a single object.
  502. * Can validate that non-empty file data has been bound to the form.
  503. * Error message keys: ``required``, ``invalid``, ``missing``, ``empty``,
  504. ``max_length``
  505. Has the optional arguments for validation: ``max_length`` and
  506. ``allow_empty_file``. If provided, these ensure that the file name is at
  507. most the given length, and that validation will succeed even if the file
  508. content is empty.
  509. To learn more about the ``UploadedFile`` object, see the :doc:`file uploads
  510. documentation </topics/http/file-uploads>`.
  511. When you use a ``FileField`` in a form, you must also remember to
  512. :ref:`bind the file data to the form <binding-uploaded-files>`.
  513. The ``max_length`` error refers to the length of the filename. In the error
  514. message for that key, ``%(max)d`` will be replaced with the maximum filename
  515. length and ``%(length)d`` will be replaced with the current filename length.
  516. ``FilePathField``
  517. -----------------
  518. .. class:: FilePathField(**kwargs)
  519. * Default widget: :class:`Select`
  520. * Empty value: ``''`` (an empty string)
  521. * Normalizes to: A string.
  522. * Validates that the selected choice exists in the list of choices.
  523. * Error message keys: ``required``, ``invalid_choice``
  524. The field allows choosing from files inside a certain directory. It takes five
  525. extra arguments; only ``path`` is required:
  526. .. attribute:: path
  527. The absolute path to the directory whose contents you want listed. This
  528. directory must exist.
  529. .. attribute:: recursive
  530. If ``False`` (the default) only the direct contents of ``path`` will be
  531. offered as choices. If ``True``, the directory will be descended into
  532. recursively and all descendants will be listed as choices.
  533. .. attribute:: match
  534. A regular expression pattern; only files with names matching this expression
  535. will be allowed as choices.
  536. .. attribute:: allow_files
  537. Optional. Either ``True`` or ``False``. Default is ``True``. Specifies
  538. whether files in the specified location should be included. Either this or
  539. :attr:`allow_folders` must be ``True``.
  540. .. attribute:: allow_folders
  541. Optional. Either ``True`` or ``False``. Default is ``False``. Specifies
  542. whether folders in the specified location should be included. Either this or
  543. :attr:`allow_files` must be ``True``.
  544. ``FloatField``
  545. --------------
  546. .. class:: FloatField(**kwargs)
  547. * Default widget: :class:`NumberInput` when :attr:`Field.localize` is
  548. ``False``, else :class:`TextInput`.
  549. * Empty value: ``None``
  550. * Normalizes to: A Python float.
  551. * Validates that the given value is a float. Uses
  552. :class:`~django.core.validators.MaxValueValidator` and
  553. :class:`~django.core.validators.MinValueValidator` if ``max_value`` and
  554. ``min_value`` are provided. Uses
  555. :class:`~django.core.validators.StepValueValidator` if ``step_size`` is
  556. provided. Leading and trailing whitespace is allowed, as in Python's
  557. ``float()`` function.
  558. * Error message keys: ``required``, ``invalid``, ``max_value``,
  559. ``min_value``, ``step_size``.
  560. Takes three optional arguments:
  561. .. attribute:: max_value
  562. .. attribute:: min_value
  563. These control the range of values permitted in the field.
  564. .. attribute:: step_size
  565. Limit valid inputs to an integral multiple of ``step_size``. If
  566. ``min_value`` is also provided, it's added as an offset to determine if
  567. the step size matches.
  568. ``GenericIPAddressField``
  569. -------------------------
  570. .. class:: GenericIPAddressField(**kwargs)
  571. A field containing either an IPv4 or an IPv6 address.
  572. * Default widget: :class:`TextInput`
  573. * Empty value: ``''`` (an empty string)
  574. * Normalizes to: A string. IPv6 addresses are normalized as described below.
  575. * Validates that the given value is a valid IP address.
  576. * Error message keys: ``required``, ``invalid``, ``max_length``
  577. The IPv6 address normalization follows :rfc:`4291#section-2.2` section 2.2,
  578. including using the IPv4 format suggested in paragraph 3 of that section, like
  579. ``::ffff:192.0.2.0``. For example, ``2001:0::0:01`` would be normalized to
  580. ``2001::1``, and ``::ffff:0a0a:0a0a`` to ``::ffff:10.10.10.10``. All characters
  581. are converted to lowercase.
  582. Takes three optional arguments:
  583. .. attribute:: protocol
  584. Limits valid inputs to the specified protocol.
  585. Accepted values are ``both`` (default), ``IPv4``
  586. or ``IPv6``. Matching is case insensitive.
  587. .. attribute:: unpack_ipv4
  588. Unpacks IPv4 mapped addresses like ``::ffff:192.0.2.1``.
  589. If this option is enabled that address would be unpacked to
  590. ``192.0.2.1``. Default is disabled. Can only be used
  591. when ``protocol`` is set to ``'both'``.
  592. .. attribute:: max_length
  593. Defaults to 39, and behaves the same way as it does for
  594. :class:`CharField`.
  595. .. versionchanged:: 4.2.18
  596. The default value for ``max_length`` was set to 39 characters.
  597. ``ImageField``
  598. --------------
  599. .. class:: ImageField(**kwargs)
  600. * Default widget: :class:`ClearableFileInput`
  601. * Empty value: ``None``
  602. * Normalizes to: An ``UploadedFile`` object that wraps the file content
  603. and file name into a single object.
  604. * Validates that file data has been bound to the form. Also uses
  605. :class:`~django.core.validators.FileExtensionValidator` to validate that
  606. the file extension is supported by Pillow.
  607. * Error message keys: ``required``, ``invalid``, ``missing``, ``empty``,
  608. ``invalid_image``
  609. Using an ``ImageField`` requires that `Pillow`_ is installed with support
  610. for the image formats you use. If you encounter a ``corrupt image`` error
  611. when you upload an image, it usually means that Pillow doesn't understand
  612. its format. To fix this, install the appropriate library and reinstall
  613. Pillow.
  614. When you use an ``ImageField`` on a form, you must also remember to
  615. :ref:`bind the file data to the form <binding-uploaded-files>`.
  616. After the field has been cleaned and validated, the ``UploadedFile``
  617. object will have an additional ``image`` attribute containing the Pillow
  618. `Image`_ instance used to check if the file was a valid image. Pillow
  619. closes the underlying file descriptor after verifying an image, so while
  620. non-image data attributes, such as ``format``, ``height``, and ``width``,
  621. are available, methods that access the underlying image data, such as
  622. ``getdata()`` or ``getpixel()``, cannot be used without reopening the file.
  623. For example:
  624. .. code-block:: pycon
  625. >>> from PIL import Image
  626. >>> from django import forms
  627. >>> from django.core.files.uploadedfile import SimpleUploadedFile
  628. >>> class ImageForm(forms.Form):
  629. ... img = forms.ImageField()
  630. ...
  631. >>> file_data = {"img": SimpleUploadedFile("test.png", b"file data")}
  632. >>> form = ImageForm({}, file_data)
  633. # Pillow closes the underlying file descriptor.
  634. >>> form.is_valid()
  635. True
  636. >>> image_field = form.cleaned_data["img"]
  637. >>> image_field.image
  638. <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=191x287 at 0x7F5985045C18>
  639. >>> image_field.image.width
  640. 191
  641. >>> image_field.image.height
  642. 287
  643. >>> image_field.image.format
  644. 'PNG'
  645. >>> image_field.image.getdata()
  646. # Raises AttributeError: 'NoneType' object has no attribute 'seek'.
  647. >>> image = Image.open(image_field)
  648. >>> image.getdata()
  649. <ImagingCore object at 0x7f5984f874b0>
  650. Additionally, ``UploadedFile.content_type`` will be updated with the
  651. image's content type if Pillow can determine it, otherwise it will be set
  652. to ``None``.
  653. .. _Pillow: https://pillow.readthedocs.io/en/latest/
  654. .. _Image: https://pillow.readthedocs.io/en/latest/reference/Image.html
  655. ``IntegerField``
  656. ----------------
  657. .. class:: IntegerField(**kwargs)
  658. * Default widget: :class:`NumberInput` when :attr:`Field.localize` is
  659. ``False``, else :class:`TextInput`.
  660. * Empty value: ``None``
  661. * Normalizes to: A Python integer.
  662. * Validates that the given value is an integer. Uses
  663. :class:`~django.core.validators.MaxValueValidator` and
  664. :class:`~django.core.validators.MinValueValidator` if ``max_value`` and
  665. ``min_value`` are provided. Uses
  666. :class:`~django.core.validators.StepValueValidator` if ``step_size`` is
  667. provided. Leading and trailing whitespace is allowed, as in Python's
  668. ``int()`` function.
  669. * Error message keys: ``required``, ``invalid``, ``max_value``,
  670. ``min_value``, ``step_size``
  671. The ``max_value``, ``min_value`` and ``step_size`` error messages may
  672. contain ``%(limit_value)s``, which will be substituted by the appropriate
  673. limit.
  674. Takes three optional arguments for validation:
  675. .. attribute:: max_value
  676. .. attribute:: min_value
  677. These control the range of values permitted in the field.
  678. .. attribute:: step_size
  679. Limit valid inputs to an integral multiple of ``step_size``. If
  680. ``min_value`` is also provided, it's added as an offset to determine if
  681. the step size matches.
  682. ``JSONField``
  683. -------------
  684. .. class:: JSONField(encoder=None, decoder=None, **kwargs)
  685. A field which accepts JSON encoded data for a
  686. :class:`~django.db.models.JSONField`.
  687. * Default widget: :class:`Textarea`
  688. * Empty value: ``None``
  689. * Normalizes to: A Python representation of the JSON value (usually as a
  690. ``dict``, ``list``, or ``None``), depending on :attr:`JSONField.decoder`.
  691. * Validates that the given value is a valid JSON.
  692. * Error message keys: ``required``, ``invalid``
  693. Takes two optional arguments:
  694. .. attribute:: encoder
  695. A :py:class:`json.JSONEncoder` subclass to serialize data types not
  696. supported by the standard JSON serializer (e.g. ``datetime.datetime``
  697. or :class:`~python:uuid.UUID`). For example, you can use the
  698. :class:`~django.core.serializers.json.DjangoJSONEncoder` class.
  699. Defaults to ``json.JSONEncoder``.
  700. .. attribute:: decoder
  701. A :py:class:`json.JSONDecoder` subclass to deserialize the input. Your
  702. deserialization may need to account for the fact that you can't be
  703. certain of the input type. For example, you run the risk of returning a
  704. ``datetime`` that was actually a string that just happened to be in the
  705. same format chosen for ``datetime``\s.
  706. The ``decoder`` can be used to validate the input. If
  707. :py:class:`json.JSONDecodeError` is raised during the deserialization,
  708. a ``ValidationError`` will be raised.
  709. Defaults to ``json.JSONDecoder``.
  710. .. note::
  711. If you use a :class:`ModelForm <django.forms.ModelForm>`, the
  712. ``encoder`` and ``decoder`` from :class:`~django.db.models.JSONField`
  713. will be used.
  714. .. admonition:: User friendly forms
  715. ``JSONField`` is not particularly user friendly in most cases. However,
  716. it is a useful way to format data from a client-side widget for
  717. submission to the server.
  718. ``MultipleChoiceField``
  719. -----------------------
  720. .. class:: MultipleChoiceField(**kwargs)
  721. * Default widget: :class:`SelectMultiple`
  722. * Empty value: ``[]`` (an empty list)
  723. * Normalizes to: A list of strings.
  724. * Validates that every value in the given list of values exists in the list
  725. of choices.
  726. * Error message keys: ``required``, ``invalid_choice``, ``invalid_list``
  727. The ``invalid_choice`` error message may contain ``%(value)s``, which will be
  728. replaced with the selected choice.
  729. Takes one extra required argument, ``choices``, as for :class:`ChoiceField`.
  730. ``NullBooleanField``
  731. --------------------
  732. .. class:: NullBooleanField(**kwargs)
  733. * Default widget: :class:`NullBooleanSelect`
  734. * Empty value: ``None``
  735. * Normalizes to: A Python ``True``, ``False`` or ``None`` value.
  736. * Validates nothing (i.e., it never raises a ``ValidationError``).
  737. ``NullBooleanField`` may be used with widgets such as
  738. :class:`~django.forms.Select` or :class:`~django.forms.RadioSelect`
  739. by providing the widget ``choices``::
  740. NullBooleanField(
  741. widget=Select(
  742. choices=[
  743. ("", "Unknown"),
  744. (True, "Yes"),
  745. (False, "No"),
  746. ]
  747. )
  748. )
  749. ``RegexField``
  750. --------------
  751. .. class:: RegexField(**kwargs)
  752. * Default widget: :class:`TextInput`
  753. * Empty value: Whatever you've given as ``empty_value``.
  754. * Normalizes to: A string.
  755. * Uses :class:`~django.core.validators.RegexValidator` to validate that
  756. the given value matches a certain regular expression.
  757. * Error message keys: ``required``, ``invalid``
  758. Takes one required argument:
  759. .. attribute:: regex
  760. A regular expression specified either as a string or a compiled regular
  761. expression object.
  762. Also takes ``max_length``, ``min_length``, ``strip``, and ``empty_value``
  763. which work just as they do for :class:`CharField`.
  764. .. attribute:: strip
  765. Defaults to ``False``. If enabled, stripping will be applied before the
  766. regex validation.
  767. ``SlugField``
  768. -------------
  769. .. class:: SlugField(**kwargs)
  770. * Default widget: :class:`TextInput`
  771. * Empty value: Whatever you've given as :attr:`empty_value`.
  772. * Normalizes to: A string.
  773. * Uses :class:`~django.core.validators.validate_slug` or
  774. :class:`~django.core.validators.validate_unicode_slug` to validate that
  775. the given value contains only letters, numbers, underscores, and hyphens.
  776. * Error messages: ``required``, ``invalid``
  777. This field is intended for use in representing a model
  778. :class:`~django.db.models.SlugField` in forms.
  779. Takes two optional parameters:
  780. .. attribute:: allow_unicode
  781. A boolean instructing the field to accept Unicode letters in addition
  782. to ASCII letters. Defaults to ``False``.
  783. .. attribute:: empty_value
  784. The value to use to represent "empty". Defaults to an empty string.
  785. ``TimeField``
  786. -------------
  787. .. class:: TimeField(**kwargs)
  788. * Default widget: :class:`TimeInput`
  789. * Empty value: ``None``
  790. * Normalizes to: A Python ``datetime.time`` object.
  791. * Validates that the given value is either a ``datetime.time`` or string
  792. formatted in a particular time format.
  793. * Error message keys: ``required``, ``invalid``
  794. Takes one optional argument:
  795. .. attribute:: input_formats
  796. An iterable of formats used to attempt to convert a string to a valid
  797. ``datetime.time`` object.
  798. If no ``input_formats`` argument is provided, the default input formats are
  799. taken from the active locale format ``TIME_INPUT_FORMATS`` key, or from
  800. :setting:`TIME_INPUT_FORMATS` if localization is disabled. See also
  801. :doc:`format localization </topics/i18n/formatting>`.
  802. ``TypedChoiceField``
  803. --------------------
  804. .. class:: TypedChoiceField(**kwargs)
  805. Just like a :class:`ChoiceField`, except :class:`TypedChoiceField` takes two
  806. extra arguments, :attr:`coerce` and :attr:`empty_value`.
  807. * Default widget: :class:`Select`
  808. * Empty value: Whatever you've given as :attr:`empty_value`.
  809. * Normalizes to: A value of the type provided by the :attr:`coerce`
  810. argument.
  811. * Validates that the given value exists in the list of choices and can be
  812. coerced.
  813. * Error message keys: ``required``, ``invalid_choice``
  814. Takes extra arguments:
  815. .. attribute:: coerce
  816. A function that takes one argument and returns a coerced value. Examples
  817. include the built-in ``int``, ``float``, ``bool`` and other types. Defaults
  818. to an identity function. Note that coercion happens after input
  819. validation, so it is possible to coerce to a value not present in
  820. ``choices``.
  821. .. attribute:: empty_value
  822. The value to use to represent "empty." Defaults to the empty string;
  823. ``None`` is another common choice here. Note that this value will not be
  824. coerced by the function given in the ``coerce`` argument, so choose it
  825. accordingly.
  826. ``TypedMultipleChoiceField``
  827. ----------------------------
  828. .. class:: TypedMultipleChoiceField(**kwargs)
  829. Just like a :class:`MultipleChoiceField`, except :class:`TypedMultipleChoiceField`
  830. takes two extra arguments, ``coerce`` and ``empty_value``.
  831. * Default widget: :class:`SelectMultiple`
  832. * Empty value: Whatever you've given as ``empty_value``
  833. * Normalizes to: A list of values of the type provided by the ``coerce``
  834. argument.
  835. * Validates that the given values exists in the list of choices and can be
  836. coerced.
  837. * Error message keys: ``required``, ``invalid_choice``
  838. The ``invalid_choice`` error message may contain ``%(value)s``, which will be
  839. replaced with the selected choice.
  840. Takes two extra arguments, ``coerce`` and ``empty_value``, as for
  841. :class:`TypedChoiceField`.
  842. ``URLField``
  843. ------------
  844. .. class:: URLField(**kwargs)
  845. * Default widget: :class:`URLInput`
  846. * Empty value: Whatever you've given as ``empty_value``.
  847. * Normalizes to: A string.
  848. * Uses :class:`~django.core.validators.URLValidator` to validate that the
  849. given value is a valid URL.
  850. * Error message keys: ``required``, ``invalid``
  851. Has the optional arguments ``max_length``, ``min_length``, ``empty_value``
  852. which work just as they do for :class:`CharField`, and one more argument:
  853. .. attribute:: assume_scheme
  854. .. versionadded:: 5.0
  855. The scheme assumed for URLs provided without one. Defaults to
  856. ``"http"``. For example, if ``assume_scheme`` is ``"https"`` and the
  857. provided value is ``"example.com"``, the normalized value will be
  858. ``"https://example.com"``.
  859. .. deprecated:: 5.0
  860. The default value for ``assume_scheme`` will change from ``"http"`` to
  861. ``"https"`` in Django 6.0. Set :setting:`FORMS_URLFIELD_ASSUME_HTTPS`
  862. transitional setting to ``True`` to opt into using ``"https"`` during
  863. the Django 5.x release cycle.
  864. ``UUIDField``
  865. -------------
  866. .. class:: UUIDField(**kwargs)
  867. * Default widget: :class:`TextInput`
  868. * Empty value: ``None``
  869. * Normalizes to: A :class:`~python:uuid.UUID` object.
  870. * Error message keys: ``required``, ``invalid``
  871. This field will accept any string format accepted as the ``hex`` argument
  872. to the :class:`~python:uuid.UUID` constructor.
  873. Slightly complex built-in ``Field`` classes
  874. ===========================================
  875. ``ComboField``
  876. --------------
  877. .. class:: ComboField(**kwargs)
  878. * Default widget: :class:`TextInput`
  879. * Empty value: ``''`` (an empty string)
  880. * Normalizes to: A string.
  881. * Validates the given value against each of the fields specified
  882. as an argument to the ``ComboField``.
  883. * Error message keys: ``required``, ``invalid``
  884. Takes one extra required argument:
  885. .. attribute:: fields
  886. The list of fields that should be used to validate the field's value (in
  887. the order in which they are provided).
  888. .. code-block:: pycon
  889. >>> from django.forms import ComboField
  890. >>> f = ComboField(fields=[CharField(max_length=20), EmailField()])
  891. >>> f.clean("test@example.com")
  892. 'test@example.com'
  893. >>> f.clean("longemailaddress@example.com")
  894. Traceback (most recent call last):
  895. ...
  896. ValidationError: ['Ensure this value has at most 20 characters (it has 28).']
  897. ``MultiValueField``
  898. -------------------
  899. .. class:: MultiValueField(fields=(), **kwargs)
  900. * Default widget: :class:`TextInput`
  901. * Empty value: ``''`` (an empty string)
  902. * Normalizes to: the type returned by the ``compress`` method of the subclass.
  903. * Validates the given value against each of the fields specified
  904. as an argument to the ``MultiValueField``.
  905. * Error message keys: ``required``, ``invalid``, ``incomplete``
  906. Aggregates the logic of multiple fields that together produce a single
  907. value.
  908. This field is abstract and must be subclassed. In contrast with the
  909. single-value fields, subclasses of :class:`MultiValueField` must not
  910. implement :meth:`~django.forms.Field.clean` but instead - implement
  911. :meth:`~MultiValueField.compress`.
  912. Takes one extra required argument:
  913. .. attribute:: fields
  914. A tuple of fields whose values are cleaned and subsequently combined
  915. into a single value. Each value of the field is cleaned by the
  916. corresponding field in ``fields`` -- the first value is cleaned by the
  917. first field, the second value is cleaned by the second field, etc.
  918. Once all fields are cleaned, the list of clean values is combined into
  919. a single value by :meth:`~MultiValueField.compress`.
  920. Also takes some optional arguments:
  921. .. attribute:: require_all_fields
  922. Defaults to ``True``, in which case a ``required`` validation error
  923. will be raised if no value is supplied for any field.
  924. When set to ``False``, the :attr:`Field.required` attribute can be set
  925. to ``False`` for individual fields to make them optional. If no value
  926. is supplied for a required field, an ``incomplete`` validation error
  927. will be raised.
  928. A default ``incomplete`` error message can be defined on the
  929. :class:`MultiValueField` subclass, or different messages can be defined
  930. on each individual field. For example::
  931. from django.core.validators import RegexValidator
  932. class PhoneField(MultiValueField):
  933. def __init__(self, **kwargs):
  934. # Define one message for all fields.
  935. error_messages = {
  936. "incomplete": "Enter a country calling code and a phone number.",
  937. }
  938. # Or define a different message for each field.
  939. fields = (
  940. CharField(
  941. error_messages={"incomplete": "Enter a country calling code."},
  942. validators=[
  943. RegexValidator(r"^[0-9]+$", "Enter a valid country calling code."),
  944. ],
  945. ),
  946. CharField(
  947. error_messages={"incomplete": "Enter a phone number."},
  948. validators=[RegexValidator(r"^[0-9]+$", "Enter a valid phone number.")],
  949. ),
  950. CharField(
  951. validators=[RegexValidator(r"^[0-9]+$", "Enter a valid extension.")],
  952. required=False,
  953. ),
  954. )
  955. super().__init__(
  956. error_messages=error_messages,
  957. fields=fields,
  958. require_all_fields=False,
  959. **kwargs
  960. )
  961. .. attribute:: MultiValueField.widget
  962. Must be a subclass of :class:`django.forms.MultiWidget`.
  963. Default value is :class:`~django.forms.TextInput`, which
  964. probably is not very useful in this case.
  965. .. method:: compress(data_list)
  966. Takes a list of valid values and returns a "compressed" version of
  967. those values -- in a single value. For example,
  968. :class:`SplitDateTimeField` is a subclass which combines a time field
  969. and a date field into a ``datetime`` object.
  970. This method must be implemented in the subclasses.
  971. ``SplitDateTimeField``
  972. ----------------------
  973. .. class:: SplitDateTimeField(**kwargs)
  974. * Default widget: :class:`SplitDateTimeWidget`
  975. * Empty value: ``None``
  976. * Normalizes to: A Python ``datetime.datetime`` object.
  977. * Validates that the given value is a ``datetime.datetime`` or string
  978. formatted in a particular datetime format.
  979. * Error message keys: ``required``, ``invalid``, ``invalid_date``,
  980. ``invalid_time``
  981. Takes two optional arguments:
  982. .. attribute:: input_date_formats
  983. A list of formats used to attempt to convert a string to a valid
  984. ``datetime.date`` object.
  985. If no ``input_date_formats`` argument is provided, the default input formats
  986. for :class:`DateField` are used.
  987. .. attribute:: input_time_formats
  988. A list of formats used to attempt to convert a string to a valid
  989. ``datetime.time`` object.
  990. If no ``input_time_formats`` argument is provided, the default input formats
  991. for :class:`TimeField` are used.
  992. .. _fields-which-handle-relationships:
  993. Fields which handle relationships
  994. =================================
  995. Two fields are available for representing relationships between
  996. models: :class:`ModelChoiceField` and
  997. :class:`ModelMultipleChoiceField`. Both of these fields require a
  998. single ``queryset`` parameter that is used to create the choices for
  999. the field. Upon form validation, these fields will place either one
  1000. model object (in the case of ``ModelChoiceField``) or multiple model
  1001. objects (in the case of ``ModelMultipleChoiceField``) into the
  1002. ``cleaned_data`` dictionary of the form.
  1003. For more complex uses, you can specify ``queryset=None`` when declaring the
  1004. form field and then populate the ``queryset`` in the form's ``__init__()``
  1005. method::
  1006. class FooMultipleChoiceForm(forms.Form):
  1007. foo_select = forms.ModelMultipleChoiceField(queryset=None)
  1008. def __init__(self, *args, **kwargs):
  1009. super().__init__(*args, **kwargs)
  1010. self.fields["foo_select"].queryset = ...
  1011. Both ``ModelChoiceField`` and ``ModelMultipleChoiceField`` have an ``iterator``
  1012. attribute which specifies the class used to iterate over the queryset when
  1013. generating choices. See :ref:`iterating-relationship-choices` for details.
  1014. ``ModelChoiceField``
  1015. --------------------
  1016. .. class:: ModelChoiceField(**kwargs)
  1017. * Default widget: :class:`Select`
  1018. * Empty value: ``None``
  1019. * Normalizes to: A model instance.
  1020. * Validates that the given id exists in the queryset.
  1021. * Error message keys: ``required``, ``invalid_choice``
  1022. The ``invalid_choice`` error message may contain ``%(value)s``, which will
  1023. be replaced with the selected choice.
  1024. Allows the selection of a single model object, suitable for representing a
  1025. foreign key. Note that the default widget for ``ModelChoiceField`` becomes
  1026. impractical when the number of entries increases. You should avoid using it
  1027. for more than 100 items.
  1028. A single argument is required:
  1029. .. attribute:: queryset
  1030. A ``QuerySet`` of model objects from which the choices for the field
  1031. are derived and which is used to validate the user's selection. It's
  1032. evaluated when the form is rendered.
  1033. ``ModelChoiceField`` also takes several optional arguments:
  1034. .. attribute:: empty_label
  1035. By default the ``<select>`` widget used by ``ModelChoiceField`` will have an
  1036. empty choice at the top of the list. You can change the text of this
  1037. label (which is ``"---------"`` by default) with the ``empty_label``
  1038. attribute, or you can disable the empty label entirely by setting
  1039. ``empty_label`` to ``None``::
  1040. # A custom empty label
  1041. field1 = forms.ModelChoiceField(queryset=..., empty_label="(Nothing)")
  1042. # No empty label
  1043. field2 = forms.ModelChoiceField(queryset=..., empty_label=None)
  1044. Note that no empty choice is created (regardless of the value of
  1045. ``empty_label``) if a ``ModelChoiceField`` is required and has a
  1046. default initial value, or a ``widget`` is set to
  1047. :class:`~django.forms.RadioSelect` and the
  1048. :attr:`~ModelChoiceField.blank` argument is ``False``.
  1049. .. attribute:: to_field_name
  1050. This optional argument is used to specify the field to use as the value
  1051. of the choices in the field's widget. Be sure it's a unique field for
  1052. the model, otherwise the selected value could match more than one
  1053. object. By default it is set to ``None``, in which case the primary key
  1054. of each object will be used. For example::
  1055. # No custom to_field_name
  1056. field1 = forms.ModelChoiceField(queryset=...)
  1057. would yield:
  1058. .. code-block:: html
  1059. <select id="id_field1" name="field1">
  1060. <option value="obj1.pk">Object1</option>
  1061. <option value="obj2.pk">Object2</option>
  1062. ...
  1063. </select>
  1064. and::
  1065. # to_field_name provided
  1066. field2 = forms.ModelChoiceField(queryset=..., to_field_name="name")
  1067. would yield:
  1068. .. code-block:: html
  1069. <select id="id_field2" name="field2">
  1070. <option value="obj1.name">Object1</option>
  1071. <option value="obj2.name">Object2</option>
  1072. ...
  1073. </select>
  1074. .. attribute:: blank
  1075. When using the :class:`~django.forms.RadioSelect` widget, this optional
  1076. boolean argument determines whether an empty choice is created. By
  1077. default, ``blank`` is ``False``, in which case no empty choice is
  1078. created.
  1079. ``ModelChoiceField`` also has the attribute:
  1080. .. attribute:: iterator
  1081. The iterator class used to generate field choices from ``queryset``. By
  1082. default, :class:`ModelChoiceIterator`.
  1083. The ``__str__()`` method of the model will be called to generate string
  1084. representations of the objects for use in the field's choices. To provide
  1085. customized representations, subclass ``ModelChoiceField`` and override
  1086. ``label_from_instance``. This method will receive a model object and should
  1087. return a string suitable for representing it. For example::
  1088. from django.forms import ModelChoiceField
  1089. class MyModelChoiceField(ModelChoiceField):
  1090. def label_from_instance(self, obj):
  1091. return "My Object #%i" % obj.id
  1092. ``ModelMultipleChoiceField``
  1093. ----------------------------
  1094. .. class:: ModelMultipleChoiceField(**kwargs)
  1095. * Default widget: :class:`SelectMultiple`
  1096. * Empty value: An empty ``QuerySet`` (``self.queryset.none()``)
  1097. * Normalizes to: A ``QuerySet`` of model instances.
  1098. * Validates that every id in the given list of values exists in the
  1099. queryset.
  1100. * Error message keys: ``required``, ``invalid_list``, ``invalid_choice``,
  1101. ``invalid_pk_value``
  1102. The ``invalid_choice`` message may contain ``%(value)s`` and the
  1103. ``invalid_pk_value`` message may contain ``%(pk)s``, which will be
  1104. substituted by the appropriate values.
  1105. Allows the selection of one or more model objects, suitable for
  1106. representing a many-to-many relation. As with :class:`ModelChoiceField`,
  1107. you can use ``label_from_instance`` to customize the object
  1108. representations.
  1109. A single argument is required:
  1110. .. attribute:: queryset
  1111. Same as :class:`ModelChoiceField.queryset`.
  1112. Takes one optional argument:
  1113. .. attribute:: to_field_name
  1114. Same as :class:`ModelChoiceField.to_field_name`.
  1115. ``ModelMultipleChoiceField`` also has the attribute:
  1116. .. attribute:: iterator
  1117. Same as :class:`ModelChoiceField.iterator`.
  1118. .. _iterating-relationship-choices:
  1119. Iterating relationship choices
  1120. ------------------------------
  1121. By default, :class:`ModelChoiceField` and :class:`ModelMultipleChoiceField` use
  1122. :class:`ModelChoiceIterator` to generate their field ``choices``.
  1123. When iterated, ``ModelChoiceIterator`` yields 2-tuple choices containing
  1124. :class:`ModelChoiceIteratorValue` instances as the first ``value`` element in
  1125. each choice. ``ModelChoiceIteratorValue`` wraps the choice value while
  1126. maintaining a reference to the source model instance that can be used in custom
  1127. widget implementations, for example, to add `data-* attributes`_ to
  1128. ``<option>`` elements.
  1129. .. _`data-* attributes`: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/data-*
  1130. For example, consider the following models::
  1131. from django.db import models
  1132. class Topping(models.Model):
  1133. name = models.CharField(max_length=100)
  1134. price = models.DecimalField(decimal_places=2, max_digits=6)
  1135. def __str__(self):
  1136. return self.name
  1137. class Pizza(models.Model):
  1138. topping = models.ForeignKey(Topping, on_delete=models.CASCADE)
  1139. You can use a :class:`~django.forms.Select` widget subclass to include
  1140. the value of ``Topping.price`` as the HTML attribute ``data-price`` for each
  1141. ``<option>`` element::
  1142. from django import forms
  1143. class ToppingSelect(forms.Select):
  1144. def create_option(
  1145. self, name, value, label, selected, index, subindex=None, attrs=None
  1146. ):
  1147. option = super().create_option(
  1148. name, value, label, selected, index, subindex, attrs
  1149. )
  1150. if value:
  1151. option["attrs"]["data-price"] = value.instance.price
  1152. return option
  1153. class PizzaForm(forms.ModelForm):
  1154. class Meta:
  1155. model = Pizza
  1156. fields = ["topping"]
  1157. widgets = {"topping": ToppingSelect}
  1158. This will render the ``Pizza.topping`` select as:
  1159. .. code-block:: html
  1160. <select id="id_topping" name="topping" required>
  1161. <option value="" selected>---------</option>
  1162. <option value="1" data-price="1.50">mushrooms</option>
  1163. <option value="2" data-price="1.25">onions</option>
  1164. <option value="3" data-price="1.75">peppers</option>
  1165. <option value="4" data-price="2.00">pineapple</option>
  1166. </select>
  1167. For more advanced usage you may subclass ``ModelChoiceIterator`` in order to
  1168. customize the yielded 2-tuple choices.
  1169. ``ModelChoiceIterator``
  1170. ~~~~~~~~~~~~~~~~~~~~~~~
  1171. .. class:: ModelChoiceIterator(field)
  1172. The default class assigned to the ``iterator`` attribute of
  1173. :class:`ModelChoiceField` and :class:`ModelMultipleChoiceField`. An
  1174. iterable that yields 2-tuple choices from the queryset.
  1175. A single argument is required:
  1176. .. attribute:: field
  1177. The instance of ``ModelChoiceField`` or ``ModelMultipleChoiceField`` to
  1178. iterate and yield choices.
  1179. ``ModelChoiceIterator`` has the following method:
  1180. .. method:: __iter__()
  1181. Yields 2-tuple choices, in the ``(value, label)`` format used by
  1182. :attr:`ChoiceField.choices`. The first ``value`` element is a
  1183. :class:`ModelChoiceIteratorValue` instance.
  1184. ``ModelChoiceIteratorValue``
  1185. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1186. .. class:: ModelChoiceIteratorValue(value, instance)
  1187. Two arguments are required:
  1188. .. attribute:: value
  1189. The value of the choice. This value is used to render the ``value``
  1190. attribute of an HTML ``<option>`` element.
  1191. .. attribute:: instance
  1192. The model instance from the queryset. The instance can be accessed in
  1193. custom ``ChoiceWidget.create_option()`` implementations to adjust the
  1194. rendered HTML.
  1195. ``ModelChoiceIteratorValue`` has the following method:
  1196. .. method:: __str__()
  1197. Return ``value`` as a string to be rendered in HTML.
  1198. Creating custom fields
  1199. ======================
  1200. If the built-in ``Field`` classes don't meet your needs, you can create custom
  1201. ``Field`` classes. To do this, create a subclass of ``django.forms.Field``. Its
  1202. only requirements are that it implement a ``clean()`` method and that its
  1203. ``__init__()`` method accept the core arguments mentioned above (``required``,
  1204. ``label``, ``initial``, ``widget``, ``help_text``).
  1205. You can also customize how a field will be accessed by overriding
  1206. :meth:`~django.forms.Field.get_bound_field()`.