api.txt 61 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664
  1. =============
  2. The Forms API
  3. =============
  4. .. module:: django.forms
  5. .. admonition:: About this document
  6. This document covers the gritty details of Django's forms API. You should
  7. read the :doc:`introduction to working with forms </topics/forms/index>`
  8. first.
  9. .. _ref-forms-api-bound-unbound:
  10. Bound and unbound forms
  11. =======================
  12. A :class:`Form` instance is either **bound** to a set of data, or **unbound**.
  13. * If it's **bound** to a set of data, it's capable of validating that data
  14. and rendering the form as HTML with the data displayed in the HTML.
  15. * If it's **unbound**, it cannot do validation (because there's no data to
  16. validate!), but it can still render the blank form as HTML.
  17. .. class:: Form
  18. To create an unbound :class:`Form` instance, instantiate the class:
  19. .. code-block:: pycon
  20. >>> f = ContactForm()
  21. To bind data to a form, pass the data as a dictionary as the first parameter to
  22. your :class:`Form` class constructor:
  23. .. code-block:: pycon
  24. >>> data = {
  25. ... "subject": "hello",
  26. ... "message": "Hi there",
  27. ... "sender": "foo@example.com",
  28. ... "cc_myself": True,
  29. ... }
  30. >>> f = ContactForm(data)
  31. In this dictionary, the keys are the field names, which correspond to the
  32. attributes in your :class:`Form` class. The values are the data you're trying to
  33. validate. These will usually be strings, but there's no requirement that they be
  34. strings; the type of data you pass depends on the :class:`Field`, as we'll see
  35. in a moment.
  36. .. attribute:: Form.is_bound
  37. If you need to distinguish between bound and unbound form instances at runtime,
  38. check the value of the form's :attr:`~Form.is_bound` attribute:
  39. .. code-block:: pycon
  40. >>> f = ContactForm()
  41. >>> f.is_bound
  42. False
  43. >>> f = ContactForm({"subject": "hello"})
  44. >>> f.is_bound
  45. True
  46. Note that passing an empty dictionary creates a *bound* form with empty data:
  47. .. code-block:: pycon
  48. >>> f = ContactForm({})
  49. >>> f.is_bound
  50. True
  51. If you have a bound :class:`Form` instance and want to change the data somehow,
  52. or if you want to bind an unbound :class:`Form` instance to some data, create
  53. another :class:`Form` instance. There is no way to change data in a
  54. :class:`Form` instance. Once a :class:`Form` instance has been created, you
  55. should consider its data immutable, whether it has data or not.
  56. Using forms to validate data
  57. ============================
  58. .. method:: Form.clean()
  59. Implement a ``clean()`` method on your ``Form`` when you must add custom
  60. validation for fields that are interdependent. See
  61. :ref:`validating-fields-with-clean` for example usage.
  62. .. method:: Form.is_valid()
  63. The primary task of a :class:`Form` object is to validate data. With a bound
  64. :class:`Form` instance, call the :meth:`~Form.is_valid` method to run validation
  65. and return a boolean designating whether the data was valid:
  66. .. code-block:: pycon
  67. >>> data = {
  68. ... "subject": "hello",
  69. ... "message": "Hi there",
  70. ... "sender": "foo@example.com",
  71. ... "cc_myself": True,
  72. ... }
  73. >>> f = ContactForm(data)
  74. >>> f.is_valid()
  75. True
  76. Let's try with some invalid data. In this case, ``subject`` is blank (an error,
  77. because all fields are required by default) and ``sender`` is not a valid
  78. email address:
  79. .. code-block:: pycon
  80. >>> data = {
  81. ... "subject": "",
  82. ... "message": "Hi there",
  83. ... "sender": "invalid email address",
  84. ... "cc_myself": True,
  85. ... }
  86. >>> f = ContactForm(data)
  87. >>> f.is_valid()
  88. False
  89. .. attribute:: Form.errors
  90. Access the :attr:`~Form.errors` attribute to get a dictionary of error
  91. messages:
  92. .. code-block:: pycon
  93. >>> f.errors
  94. {'sender': ['Enter a valid email address.'], 'subject': ['This field is required.']}
  95. In this dictionary, the keys are the field names, and the values are lists of
  96. strings representing the error messages. The error messages are stored
  97. in lists because a field can have multiple error messages.
  98. You can access :attr:`~Form.errors` without having to call
  99. :meth:`~Form.is_valid` first. The form's data will be validated the first time
  100. either you call :meth:`~Form.is_valid` or access :attr:`~Form.errors`.
  101. The validation routines will only get called once, regardless of how many times
  102. you access :attr:`~Form.errors` or call :meth:`~Form.is_valid`. This means that
  103. if validation has side effects, those side effects will only be triggered once.
  104. .. method:: Form.errors.as_data()
  105. Returns a ``dict`` that maps fields to their original ``ValidationError``
  106. instances.
  107. .. code-block:: pycon
  108. >>> f.errors.as_data()
  109. {'sender': [ValidationError(['Enter a valid email address.'])],
  110. 'subject': [ValidationError(['This field is required.'])]}
  111. Use this method anytime you need to identify an error by its ``code``. This
  112. enables things like rewriting the error's message or writing custom logic in a
  113. view when a given error is present. It can also be used to serialize the errors
  114. in a custom format (e.g. XML); for instance, :meth:`~Form.errors.as_json()`
  115. relies on ``as_data()``.
  116. The need for the ``as_data()`` method is due to backwards compatibility.
  117. Previously ``ValidationError`` instances were lost as soon as their
  118. **rendered** error messages were added to the ``Form.errors`` dictionary.
  119. Ideally ``Form.errors`` would have stored ``ValidationError`` instances
  120. and methods with an ``as_`` prefix could render them, but it had to be done
  121. the other way around in order not to break code that expects rendered error
  122. messages in ``Form.errors``.
  123. .. method:: Form.errors.as_json(escape_html=False)
  124. Returns the errors serialized as JSON.
  125. .. code-block:: pycon
  126. >>> f.errors.as_json()
  127. {"sender": [{"message": "Enter a valid email address.", "code": "invalid"}],
  128. "subject": [{"message": "This field is required.", "code": "required"}]}
  129. By default, ``as_json()`` does not escape its output. If you are using it for
  130. something like AJAX requests to a form view where the client interprets the
  131. response and inserts errors into the page, you'll want to be sure to escape the
  132. results on the client-side to avoid the possibility of a cross-site scripting
  133. attack. You can do this in JavaScript with ``element.textContent = errorText``
  134. or with jQuery's ``$(el).text(errorText)`` (rather than its ``.html()``
  135. function).
  136. If for some reason you don't want to use client-side escaping, you can also
  137. set ``escape_html=True`` and error messages will be escaped so you can use them
  138. directly in HTML.
  139. .. method:: Form.errors.get_json_data(escape_html=False)
  140. Returns the errors as a dictionary suitable for serializing to JSON.
  141. :meth:`Form.errors.as_json()` returns serialized JSON, while this returns the
  142. error data before it's serialized.
  143. The ``escape_html`` parameter behaves as described in
  144. :meth:`Form.errors.as_json()`.
  145. .. method:: Form.add_error(field, error)
  146. This method allows adding errors to specific fields from within the
  147. ``Form.clean()`` method, or from outside the form altogether; for instance
  148. from a view.
  149. The ``field`` argument is the name of the field to which the errors
  150. should be added. If its value is ``None`` the error will be treated as
  151. a non-field error as returned by :meth:`Form.non_field_errors()
  152. <django.forms.Form.non_field_errors>`.
  153. The ``error`` argument can be a string, or preferably an instance of
  154. ``ValidationError``. See :ref:`raising-validation-error` for best practices
  155. when defining form errors.
  156. Note that ``Form.add_error()`` automatically removes the relevant field from
  157. ``cleaned_data``.
  158. .. method:: Form.has_error(field, code=None)
  159. This method returns a boolean designating whether a field has an error with
  160. a specific error ``code``. If ``code`` is ``None``, it will return ``True``
  161. if the field contains any errors at all.
  162. To check for non-field errors use
  163. :data:`~django.core.exceptions.NON_FIELD_ERRORS` as the ``field`` parameter.
  164. .. method:: Form.non_field_errors()
  165. This method returns the list of errors from :attr:`Form.errors
  166. <django.forms.Form.errors>` that aren't associated with a particular field.
  167. This includes ``ValidationError``\s that are raised in :meth:`Form.clean()
  168. <django.forms.Form.clean>` and errors added using :meth:`Form.add_error(None,
  169. "...") <django.forms.Form.add_error>`.
  170. Behavior of unbound forms
  171. -------------------------
  172. It's meaningless to validate a form with no data, but, for the record, here's
  173. what happens with unbound forms:
  174. .. code-block:: pycon
  175. >>> f = ContactForm()
  176. >>> f.is_valid()
  177. False
  178. >>> f.errors
  179. {}
  180. .. _ref-forms-initial-form-values:
  181. Initial form values
  182. ===================
  183. .. attribute:: Form.initial
  184. Use :attr:`~Form.initial` to declare the initial value of form fields at
  185. runtime. For example, you might want to fill in a ``username`` field with the
  186. username of the current session.
  187. To accomplish this, use the :attr:`~Form.initial` argument to a :class:`Form`.
  188. This argument, if given, should be a dictionary mapping field names to initial
  189. values. Only include the fields for which you're specifying an initial value;
  190. it's not necessary to include every field in your form. For example:
  191. .. code-block:: pycon
  192. >>> f = ContactForm(initial={"subject": "Hi there!"})
  193. These values are only displayed for unbound forms, and they're not used as
  194. fallback values if a particular value isn't provided.
  195. If a :class:`~django.forms.Field` defines :attr:`~Field.initial` *and* you
  196. include :attr:`~Form.initial` when instantiating the ``Form``, then the latter
  197. ``initial`` will have precedence. In this example, ``initial`` is provided both
  198. at the field level and at the form instance level, and the latter gets
  199. precedence:
  200. .. code-block:: pycon
  201. >>> from django import forms
  202. >>> class CommentForm(forms.Form):
  203. ... name = forms.CharField(initial="class")
  204. ... url = forms.URLField()
  205. ... comment = forms.CharField()
  206. ...
  207. >>> f = CommentForm(initial={"name": "instance"}, auto_id=False)
  208. >>> print(f)
  209. <div>Name:<input type="text" name="name" value="instance" required></div>
  210. <div>Url:<input type="url" name="url" required></div>
  211. <div>Comment:<input type="text" name="comment" required></div>
  212. .. method:: Form.get_initial_for_field(field, field_name)
  213. Returns the initial data for a form field. It retrieves the data from
  214. :attr:`Form.initial` if present, otherwise trying :attr:`Field.initial`.
  215. Callable values are evaluated.
  216. It is recommended to use :attr:`BoundField.initial` over
  217. :meth:`~Form.get_initial_for_field()` because ``BoundField.initial`` has a
  218. simpler interface. Also, unlike :meth:`~Form.get_initial_for_field()`,
  219. :attr:`BoundField.initial` caches its values. This is useful especially when
  220. dealing with callables whose return values can change (e.g. ``datetime.now`` or
  221. ``uuid.uuid4``):
  222. .. code-block:: pycon
  223. >>> import uuid
  224. >>> class UUIDCommentForm(CommentForm):
  225. ... identifier = forms.UUIDField(initial=uuid.uuid4)
  226. ...
  227. >>> f = UUIDCommentForm()
  228. >>> f.get_initial_for_field(f.fields["identifier"], "identifier")
  229. UUID('972ca9e4-7bfe-4f5b-af7d-07b3aa306334')
  230. >>> f.get_initial_for_field(f.fields["identifier"], "identifier")
  231. UUID('1b411fab-844e-4dec-bd4f-e9b0495f04d0')
  232. >>> # Using BoundField.initial, for comparison
  233. >>> f["identifier"].initial
  234. UUID('28a09c59-5f00-4ed9-9179-a3b074fa9c30')
  235. >>> f["identifier"].initial
  236. UUID('28a09c59-5f00-4ed9-9179-a3b074fa9c30')
  237. Checking which form data has changed
  238. ====================================
  239. .. method:: Form.has_changed()
  240. Use the ``has_changed()`` method on your ``Form`` when you need to check if the
  241. form data has been changed from the initial data.
  242. .. code-block:: pycon
  243. >>> data = {
  244. ... "subject": "hello",
  245. ... "message": "Hi there",
  246. ... "sender": "foo@example.com",
  247. ... "cc_myself": True,
  248. ... }
  249. >>> f = ContactForm(data, initial=data)
  250. >>> f.has_changed()
  251. False
  252. When the form is submitted, we reconstruct it and provide the original data
  253. so that the comparison can be done:
  254. .. code-block:: pycon
  255. >>> f = ContactForm(request.POST, initial=data)
  256. >>> f.has_changed()
  257. ``has_changed()`` will be ``True`` if the data from ``request.POST`` differs
  258. from what was provided in :attr:`~Form.initial` or ``False`` otherwise. The
  259. result is computed by calling :meth:`Field.has_changed` for each field in the
  260. form.
  261. .. attribute:: Form.changed_data
  262. The ``changed_data`` attribute returns a list of the names of the fields whose
  263. values in the form's bound data (usually ``request.POST``) differ from what was
  264. provided in :attr:`~Form.initial`. It returns an empty list if no data differs.
  265. .. code-block:: pycon
  266. >>> f = ContactForm(request.POST, initial=data)
  267. >>> if f.has_changed():
  268. ... print("The following fields changed: %s" % ", ".join(f.changed_data))
  269. ...
  270. >>> f.changed_data
  271. ['subject', 'message']
  272. Accessing the fields from the form
  273. ==================================
  274. .. attribute:: Form.fields
  275. You can access the fields of :class:`Form` instance from its ``fields``
  276. attribute:
  277. .. code-block:: pycon
  278. >>> for row in f.fields.values():
  279. ... print(row)
  280. ...
  281. <django.forms.fields.CharField object at 0x7ffaac632510>
  282. <django.forms.fields.URLField object at 0x7ffaac632f90>
  283. <django.forms.fields.CharField object at 0x7ffaac3aa050>
  284. >>> f.fields["name"]
  285. <django.forms.fields.CharField object at 0x7ffaac6324d0>
  286. You can alter the field and :class:`.BoundField` of :class:`Form` instance to
  287. change the way it is presented in the form:
  288. .. code-block:: pycon
  289. >>> f.as_div().split("</div>")[0]
  290. '<div><label for="id_subject">Subject:</label><input type="text" name="subject" maxlength="100" required id="id_subject">'
  291. >>> f["subject"].label = "Topic"
  292. >>> f.as_div().split("</div>")[0]
  293. '<div><label for="id_subject">Topic:</label><input type="text" name="subject" maxlength="100" required id="id_subject">'
  294. Beware not to alter the ``base_fields`` attribute because this modification
  295. will influence all subsequent ``ContactForm`` instances within the same Python
  296. process:
  297. .. code-block:: pycon
  298. >>> f.base_fields["subject"].label_suffix = "?"
  299. >>> another_f = ContactForm(auto_id=False)
  300. >>> another_f.as_div().split("</div>")[0]
  301. '<div><label for="id_subject">Subject?</label><input type="text" name="subject" maxlength="100" required id="id_subject">'
  302. Accessing "clean" data
  303. ======================
  304. .. attribute:: Form.cleaned_data
  305. Each field in a :class:`Form` class is responsible not only for validating
  306. data, but also for "cleaning" it -- normalizing it to a consistent format. This
  307. is a nice feature, because it allows data for a particular field to be input in
  308. a variety of ways, always resulting in consistent output.
  309. For example, :class:`~django.forms.DateField` normalizes input into a
  310. Python ``datetime.date`` object. Regardless of whether you pass it a string in
  311. the format ``'1994-07-15'``, a ``datetime.date`` object, or a number of other
  312. formats, ``DateField`` will always normalize it to a ``datetime.date`` object
  313. as long as it's valid.
  314. Once you've created a :class:`~Form` instance with a set of data and validated
  315. it, you can access the clean data via its ``cleaned_data`` attribute:
  316. .. code-block:: pycon
  317. >>> data = {
  318. ... "subject": "hello",
  319. ... "message": "Hi there",
  320. ... "sender": "foo@example.com",
  321. ... "cc_myself": True,
  322. ... }
  323. >>> f = ContactForm(data)
  324. >>> f.is_valid()
  325. True
  326. >>> f.cleaned_data
  327. {'cc_myself': True, 'message': 'Hi there', 'sender': 'foo@example.com', 'subject': 'hello'}
  328. Note that any text-based field -- such as ``CharField`` or ``EmailField`` --
  329. always cleans the input into a string. We'll cover the encoding implications
  330. later in this document.
  331. If your data does *not* validate, the ``cleaned_data`` dictionary contains
  332. only the valid fields:
  333. .. code-block:: pycon
  334. >>> data = {
  335. ... "subject": "",
  336. ... "message": "Hi there",
  337. ... "sender": "invalid email address",
  338. ... "cc_myself": True,
  339. ... }
  340. >>> f = ContactForm(data)
  341. >>> f.is_valid()
  342. False
  343. >>> f.cleaned_data
  344. {'cc_myself': True, 'message': 'Hi there'}
  345. ``cleaned_data`` will always *only* contain a key for fields defined in the
  346. ``Form``, even if you pass extra data when you define the ``Form``. In this
  347. example, we pass a bunch of extra fields to the ``ContactForm`` constructor,
  348. but ``cleaned_data`` contains only the form's fields:
  349. .. code-block:: pycon
  350. >>> data = {
  351. ... "subject": "hello",
  352. ... "message": "Hi there",
  353. ... "sender": "foo@example.com",
  354. ... "cc_myself": True,
  355. ... "extra_field_1": "foo",
  356. ... "extra_field_2": "bar",
  357. ... "extra_field_3": "baz",
  358. ... }
  359. >>> f = ContactForm(data)
  360. >>> f.is_valid()
  361. True
  362. >>> f.cleaned_data # Doesn't contain extra_field_1, etc.
  363. {'cc_myself': True, 'message': 'Hi there', 'sender': 'foo@example.com', 'subject': 'hello'}
  364. When the ``Form`` is valid, ``cleaned_data`` will include a key and value for
  365. *all* its fields, even if the data didn't include a value for some optional
  366. fields. In this example, the data dictionary doesn't include a value for the
  367. ``nick_name`` field, but ``cleaned_data`` includes it, with an empty value:
  368. .. code-block:: pycon
  369. >>> from django import forms
  370. >>> class OptionalPersonForm(forms.Form):
  371. ... first_name = forms.CharField()
  372. ... last_name = forms.CharField()
  373. ... nick_name = forms.CharField(required=False)
  374. ...
  375. >>> data = {"first_name": "John", "last_name": "Lennon"}
  376. >>> f = OptionalPersonForm(data)
  377. >>> f.is_valid()
  378. True
  379. >>> f.cleaned_data
  380. {'nick_name': '', 'first_name': 'John', 'last_name': 'Lennon'}
  381. In this above example, the ``cleaned_data`` value for ``nick_name`` is set to an
  382. empty string, because ``nick_name`` is ``CharField``, and ``CharField``\s treat
  383. empty values as an empty string. Each field type knows what its "blank" value
  384. is -- e.g., for ``DateField``, it's ``None`` instead of the empty string. For
  385. full details on each field's behavior in this case, see the "Empty value" note
  386. for each field in the :ref:`built-in-fields` section below.
  387. You can write code to perform validation for particular form fields (based on
  388. their name) or for the form as a whole (considering combinations of various
  389. fields). More information about this is in :doc:`/ref/forms/validation`.
  390. .. _ref-forms-api-outputting-html:
  391. Outputting forms as HTML
  392. ========================
  393. The second task of a ``Form`` object is to render itself as HTML. To do so,
  394. ``print`` it:
  395. .. code-block:: pycon
  396. >>> f = ContactForm()
  397. >>> print(f)
  398. <div><label for="id_subject">Subject:</label><input type="text" name="subject" maxlength="100" required id="id_subject"></div>
  399. <div><label for="id_message">Message:</label><input type="text" name="message" required id="id_message"></div>
  400. <div><label for="id_sender">Sender:</label><input type="email" name="sender" required id="id_sender"></div>
  401. <div><label for="id_cc_myself">Cc myself:</label><input type="checkbox" name="cc_myself" id="id_cc_myself"></div>
  402. If the form is bound to data, the HTML output will include that data
  403. appropriately. For example, if a field is represented by an
  404. ``<input type="text">``, the data will be in the ``value`` attribute. If a
  405. field is represented by an ``<input type="checkbox">``, then that HTML will
  406. include ``checked`` if appropriate:
  407. .. code-block:: pycon
  408. >>> data = {
  409. ... "subject": "hello",
  410. ... "message": "Hi there",
  411. ... "sender": "foo@example.com",
  412. ... "cc_myself": True,
  413. ... }
  414. >>> f = ContactForm(data)
  415. >>> print(f)
  416. <div><label for="id_subject">Subject:</label><input type="text" name="subject" value="hello" maxlength="100" required id="id_subject"></div>
  417. <div><label for="id_message">Message:</label><input type="text" name="message" value="Hi there" required id="id_message"></div>
  418. <div><label for="id_sender">Sender:</label><input type="email" name="sender" value="foo@example.com" required id="id_sender"></div>
  419. <div><label for="id_cc_myself">Cc myself:</label><input type="checkbox" name="cc_myself" id="id_cc_myself" checked></div>
  420. This default output wraps each field with a ``<div>``. Notice the following:
  421. * For flexibility, the output does *not* include the ``<form>`` and ``</form>``
  422. tags or an ``<input type="submit">`` tag. It's your job to do that.
  423. * Each field type has a default HTML representation. ``CharField`` is
  424. represented by an ``<input type="text">`` and ``EmailField`` by an
  425. ``<input type="email">``. ``BooleanField(null=False)`` is represented by an
  426. ``<input type="checkbox">``. Note these are merely sensible defaults; you can
  427. specify which HTML to use for a given field by using widgets, which we'll
  428. explain shortly.
  429. * The HTML ``name`` for each tag is taken directly from its attribute name
  430. in the ``ContactForm`` class.
  431. * The text label for each field -- e.g. ``'Subject:'``, ``'Message:'`` and
  432. ``'Cc myself:'`` is generated from the field name by converting all
  433. underscores to spaces and upper-casing the first letter. Again, note
  434. these are merely sensible defaults; you can also specify labels manually.
  435. * Each text label is surrounded in an HTML ``<label>`` tag, which points
  436. to the appropriate form field via its ``id``. Its ``id``, in turn, is
  437. generated by prepending ``'id_'`` to the field name. The ``id``
  438. attributes and ``<label>`` tags are included in the output by default, to
  439. follow best practices, but you can change that behavior.
  440. * The output uses HTML5 syntax, targeting ``<!DOCTYPE html>``. For example,
  441. it uses boolean attributes such as ``checked`` rather than the XHTML style
  442. of ``checked='checked'``.
  443. Although ``<div>`` output is the default output style when you ``print`` a form
  444. you can customize the output by using your own form template which can be set
  445. site-wide, per-form, or per-instance. See :ref:`reusable-form-templates`.
  446. Default rendering
  447. -----------------
  448. The default rendering when you ``print`` a form uses the following methods and
  449. attributes.
  450. ``template_name``
  451. ~~~~~~~~~~~~~~~~~
  452. .. attribute:: Form.template_name
  453. The name of the template rendered if the form is cast into a string, e.g. via
  454. ``print(form)`` or in a template via ``{{ form }}``.
  455. By default, a property returning the value of the renderer's
  456. :attr:`~django.forms.renderers.BaseRenderer.form_template_name`. You may set it
  457. as a string template name in order to override that for a particular form
  458. class.
  459. ``render()``
  460. ~~~~~~~~~~~~
  461. .. method:: Form.render(template_name=None, context=None, renderer=None)
  462. The render method is called by ``__str__`` as well as the :meth:`.Form.as_div`,
  463. :meth:`.Form.as_table`, :meth:`.Form.as_p`, and :meth:`.Form.as_ul` methods.
  464. All arguments are optional and default to:
  465. * ``template_name``: :attr:`.Form.template_name`
  466. * ``context``: Value returned by :meth:`.Form.get_context`
  467. * ``renderer``: Value returned by :attr:`.Form.default_renderer`
  468. By passing ``template_name`` you can customize the template used for just a
  469. single call.
  470. ``get_context()``
  471. ~~~~~~~~~~~~~~~~~
  472. .. method:: Form.get_context()
  473. Return the template context for rendering the form.
  474. The available context is:
  475. * ``form``: The bound form.
  476. * ``fields``: All bound fields, except the hidden fields.
  477. * ``hidden_fields``: All hidden bound fields.
  478. * ``errors``: All non field related or hidden field related form errors.
  479. ``template_name_label``
  480. ~~~~~~~~~~~~~~~~~~~~~~~
  481. .. attribute:: Form.template_name_label
  482. The template used to render a field's ``<label>``, used when calling
  483. :meth:`BoundField.label_tag`/:meth:`~BoundField.legend_tag`. Can be changed per
  484. form by overriding this attribute or more generally by overriding the default
  485. template, see also :ref:`overriding-built-in-form-templates`.
  486. Output styles
  487. -------------
  488. The recommended approach for changing form output style is to set a custom form
  489. template either site-wide, per-form, or per-instance. See
  490. :ref:`reusable-form-templates` for examples.
  491. The following helper functions are provided for backward compatibility and are
  492. a proxy to :meth:`Form.render` passing a particular ``template_name`` value.
  493. .. note::
  494. Of the framework provided templates and output styles, the default
  495. ``as_div()`` is recommended over the ``as_p()``, ``as_table()``, and
  496. ``as_ul()`` versions as the template implements ``<fieldset>`` and
  497. ``<legend>`` to group related inputs and is easier for screen reader users
  498. to navigate.
  499. Each helper pairs a form method with an attribute giving the appropriate
  500. template name.
  501. ``as_div()``
  502. ~~~~~~~~~~~~
  503. .. attribute:: Form.template_name_div
  504. The template used by ``as_div()``. Default: ``'django/forms/div.html'``.
  505. .. method:: Form.as_div()
  506. ``as_div()`` renders the form as a series of ``<div>`` elements, with each
  507. ``<div>`` containing one field, such as:
  508. .. code-block:: pycon
  509. >>> f = ContactForm()
  510. >>> f.as_div()
  511. … gives HTML like:
  512. .. code-block:: html
  513. <div>
  514. <label for="id_subject">Subject:</label>
  515. <input type="text" name="subject" maxlength="100" required id="id_subject">
  516. </div>
  517. <div>
  518. <label for="id_message">Message:</label>
  519. <input type="text" name="message" required id="id_message">
  520. </div>
  521. <div>
  522. <label for="id_sender">Sender:</label>
  523. <input type="email" name="sender" required id="id_sender">
  524. </div>
  525. <div>
  526. <label for="id_cc_myself">Cc myself:</label>
  527. <input type="checkbox" name="cc_myself" id="id_cc_myself">
  528. </div>
  529. ``as_p()``
  530. ~~~~~~~~~~
  531. .. attribute:: Form.template_name_p
  532. The template used by ``as_p()``. Default: ``'django/forms/p.html'``.
  533. .. method:: Form.as_p()
  534. ``as_p()`` renders the form as a series of ``<p>`` tags, with each ``<p>``
  535. containing one field:
  536. .. code-block:: pycon
  537. >>> f = ContactForm()
  538. >>> f.as_p()
  539. '<p><label for="id_subject">Subject:</label> <input id="id_subject" type="text" name="subject" maxlength="100" required></p>\n<p><label for="id_message">Message:</label> <input type="text" name="message" id="id_message" required></p>\n<p><label for="id_sender">Sender:</label> <input type="text" name="sender" id="id_sender" required></p>\n<p><label for="id_cc_myself">Cc myself:</label> <input type="checkbox" name="cc_myself" id="id_cc_myself"></p>'
  540. >>> print(f.as_p())
  541. <p><label for="id_subject">Subject:</label> <input id="id_subject" type="text" name="subject" maxlength="100" required></p>
  542. <p><label for="id_message">Message:</label> <input type="text" name="message" id="id_message" required></p>
  543. <p><label for="id_sender">Sender:</label> <input type="email" name="sender" id="id_sender" required></p>
  544. <p><label for="id_cc_myself">Cc myself:</label> <input type="checkbox" name="cc_myself" id="id_cc_myself"></p>
  545. ``as_ul()``
  546. ~~~~~~~~~~~
  547. .. attribute:: Form.template_name_ul
  548. The template used by ``as_ul()``. Default: ``'django/forms/ul.html'``.
  549. .. method:: Form.as_ul()
  550. ``as_ul()`` renders the form as a series of ``<li>`` tags, with each ``<li>``
  551. containing one field. It does *not* include the ``<ul>`` or ``</ul>``, so that
  552. you can specify any HTML attributes on the ``<ul>`` for flexibility:
  553. .. code-block:: pycon
  554. >>> f = ContactForm()
  555. >>> f.as_ul()
  556. '<li><label for="id_subject">Subject:</label> <input id="id_subject" type="text" name="subject" maxlength="100" required></li>\n<li><label for="id_message">Message:</label> <input type="text" name="message" id="id_message" required></li>\n<li><label for="id_sender">Sender:</label> <input type="email" name="sender" id="id_sender" required></li>\n<li><label for="id_cc_myself">Cc myself:</label> <input type="checkbox" name="cc_myself" id="id_cc_myself"></li>'
  557. >>> print(f.as_ul())
  558. <li><label for="id_subject">Subject:</label> <input id="id_subject" type="text" name="subject" maxlength="100" required></li>
  559. <li><label for="id_message">Message:</label> <input type="text" name="message" id="id_message" required></li>
  560. <li><label for="id_sender">Sender:</label> <input type="email" name="sender" id="id_sender" required></li>
  561. <li><label for="id_cc_myself">Cc myself:</label> <input type="checkbox" name="cc_myself" id="id_cc_myself"></li>
  562. ``as_table()``
  563. ~~~~~~~~~~~~~~
  564. .. attribute:: Form.template_name_table
  565. The template used by ``as_table()``. Default: ``'django/forms/table.html'``.
  566. .. method:: Form.as_table()
  567. ``as_table()`` renders the form as an HTML ``<table>``:
  568. .. code-block:: pycon
  569. >>> f = ContactForm()
  570. >>> f.as_table()
  571. '<tr><th><label for="id_subject">Subject:</label></th><td><input id="id_subject" type="text" name="subject" maxlength="100" required></td></tr>\n<tr><th><label for="id_message">Message:</label></th><td><input type="text" name="message" id="id_message" required></td></tr>\n<tr><th><label for="id_sender">Sender:</label></th><td><input type="email" name="sender" id="id_sender" required></td></tr>\n<tr><th><label for="id_cc_myself">Cc myself:</label></th><td><input type="checkbox" name="cc_myself" id="id_cc_myself"></td></tr>'
  572. >>> print(f.as_table())
  573. <tr><th><label for="id_subject">Subject:</label></th><td><input id="id_subject" type="text" name="subject" maxlength="100" required></td></tr>
  574. <tr><th><label for="id_message">Message:</label></th><td><input type="text" name="message" id="id_message" required></td></tr>
  575. <tr><th><label for="id_sender">Sender:</label></th><td><input type="email" name="sender" id="id_sender" required></td></tr>
  576. <tr><th><label for="id_cc_myself">Cc myself:</label></th><td><input type="checkbox" name="cc_myself" id="id_cc_myself"></td></tr>
  577. .. _ref-forms-api-styling-form-rows:
  578. Styling required or erroneous form rows
  579. ---------------------------------------
  580. .. attribute:: Form.error_css_class
  581. .. attribute:: Form.required_css_class
  582. It's pretty common to style form rows and fields that are required or have
  583. errors. For example, you might want to present required form rows in bold and
  584. highlight errors in red.
  585. The :class:`Form` class has a couple of hooks you can use to add ``class``
  586. attributes to required rows or to rows with errors: set the
  587. :attr:`Form.error_css_class` and/or :attr:`Form.required_css_class`
  588. attributes::
  589. from django import forms
  590. class ContactForm(forms.Form):
  591. error_css_class = "error"
  592. required_css_class = "required"
  593. # ... and the rest of your fields here
  594. Once you've done that, rows will be given ``"error"`` and/or ``"required"``
  595. classes, as needed. The HTML will look something like:
  596. .. code-block:: pycon
  597. >>> f = ContactForm(data)
  598. >>> print(f)
  599. <div class="required"><label for="id_subject" class="required">Subject:</label> ...
  600. <div class="required"><label for="id_message" class="required">Message:</label> ...
  601. <div class="required"><label for="id_sender" class="required">Sender:</label> ...
  602. <div><label for="id_cc_myself">Cc myself:</label> ...
  603. >>> f["subject"].label_tag()
  604. <label class="required" for="id_subject">Subject:</label>
  605. >>> f["subject"].legend_tag()
  606. <legend class="required" for="id_subject">Subject:</legend>
  607. >>> f["subject"].label_tag(attrs={"class": "foo"})
  608. <label for="id_subject" class="foo required">Subject:</label>
  609. >>> f["subject"].legend_tag(attrs={"class": "foo"})
  610. <legend for="id_subject" class="foo required">Subject:</legend>
  611. .. _ref-forms-api-configuring-label:
  612. Configuring form elements' HTML ``id`` attributes and ``<label>`` tags
  613. ----------------------------------------------------------------------
  614. .. attribute:: Form.auto_id
  615. By default, the form rendering methods include:
  616. * HTML ``id`` attributes on the form elements.
  617. * The corresponding ``<label>`` tags around the labels. An HTML ``<label>`` tag
  618. designates which label text is associated with which form element. This small
  619. enhancement makes forms more usable and more accessible to assistive devices.
  620. It's always a good idea to use ``<label>`` tags.
  621. The ``id`` attribute values are generated by prepending ``id_`` to the form
  622. field names. This behavior is configurable, though, if you want to change the
  623. ``id`` convention or remove HTML ``id`` attributes and ``<label>`` tags
  624. entirely.
  625. Use the ``auto_id`` argument to the ``Form`` constructor to control the ``id``
  626. and label behavior. This argument must be ``True``, ``False`` or a string.
  627. If ``auto_id`` is ``False``, then the form output will not include ``<label>``
  628. tags nor ``id`` attributes:
  629. .. code-block:: pycon
  630. >>> f = ContactForm(auto_id=False)
  631. >>> print(f)
  632. <div>Subject:<input type="text" name="subject" maxlength="100" required></div>
  633. <div>Message:<textarea name="message" cols="40" rows="10" required></textarea></div>
  634. <div>Sender:<input type="email" name="sender" required></div>
  635. <div>Cc myself:<input type="checkbox" name="cc_myself"></div>
  636. If ``auto_id`` is set to ``True``, then the form output *will* include
  637. ``<label>`` tags and will use the field name as its ``id`` for each form
  638. field:
  639. .. code-block:: pycon
  640. >>> f = ContactForm(auto_id=True)
  641. >>> print(f)
  642. <div><label for="subject">Subject:</label><input type="text" name="subject" maxlength="100" required id="subject"></div>
  643. <div><label for="message">Message:</label><textarea name="message" cols="40" rows="10" required id="message"></textarea></div>
  644. <div><label for="sender">Sender:</label><input type="email" name="sender" required id="sender"></div>
  645. <div><label for="cc_myself">Cc myself:</label><input type="checkbox" name="cc_myself" id="cc_myself"></div>
  646. If ``auto_id`` is set to a string containing the format character ``'%s'``,
  647. then the form output will include ``<label>`` tags, and will generate ``id``
  648. attributes based on the format string. For example, for a format string
  649. ``'field_%s'``, a field named ``subject`` will get the ``id`` value
  650. ``'field_subject'``. Continuing our example:
  651. .. code-block:: pycon
  652. >>> f = ContactForm(auto_id="id_for_%s")
  653. >>> print(f)
  654. <div><label for="id_for_subject">Subject:</label><input type="text" name="subject" maxlength="100" required id="id_for_subject"></div>
  655. <div><label for="id_for_message">Message:</label><textarea name="message" cols="40" rows="10" required id="id_for_message"></textarea></div>
  656. <div><label for="id_for_sender">Sender:</label><input type="email" name="sender" required id="id_for_sender"></div>
  657. <div><label for="id_for_cc_myself">Cc myself:</label><input type="checkbox" name="cc_myself" id="id_for_cc_myself"></div>
  658. If ``auto_id`` is set to any other true value -- such as a string that doesn't
  659. include ``%s`` -- then the library will act as if ``auto_id`` is ``True``.
  660. By default, ``auto_id`` is set to the string ``'id_%s'``.
  661. .. attribute:: Form.label_suffix
  662. A translatable string (defaults to a colon (``:``) in English) that will be
  663. appended after any label name when a form is rendered.
  664. It's possible to customize that character, or omit it entirely, using the
  665. ``label_suffix`` parameter:
  666. .. code-block:: pycon
  667. >>> f = ContactForm(auto_id="id_for_%s", label_suffix="")
  668. >>> print(f)
  669. <div><label for="id_for_subject">Subject</label><input type="text" name="subject" maxlength="100" required id="id_for_subject"></div>
  670. <div><label for="id_for_message">Message</label><textarea name="message" cols="40" rows="10" required id="id_for_message"></textarea></div>
  671. <div><label for="id_for_sender">Sender</label><input type="email" name="sender" required id="id_for_sender"></div>
  672. <div><label for="id_for_cc_myself">Cc myself</label><input type="checkbox" name="cc_myself" id="id_for_cc_myself"></div>
  673. >>> f = ContactForm(auto_id="id_for_%s", label_suffix=" ->")
  674. >>> print(f)
  675. <div><label for="id_for_subject">Subject -&gt;</label><input type="text" name="subject" maxlength="100" required id="id_for_subject"></div>
  676. <div><label for="id_for_message">Message -&gt;</label><textarea name="message" cols="40" rows="10" required id="id_for_message"></textarea></div>
  677. <div><label for="id_for_sender">Sender -&gt;</label><input type="email" name="sender" required id="id_for_sender"></div>
  678. <div><label for="id_for_cc_myself">Cc myself -&gt;</label><input type="checkbox" name="cc_myself" id="id_for_cc_myself"></div>
  679. Note that the label suffix is added only if the last character of the
  680. label isn't a punctuation character (in English, those are ``.``, ``!``, ``?``
  681. or ``:``).
  682. Fields can also define their own :attr:`~django.forms.Field.label_suffix`.
  683. This will take precedence over :attr:`Form.label_suffix
  684. <django.forms.Form.label_suffix>`. The suffix can also be overridden at runtime
  685. using the ``label_suffix`` parameter to
  686. :meth:`~django.forms.BoundField.label_tag`/
  687. :meth:`~django.forms.BoundField.legend_tag`.
  688. .. attribute:: Form.use_required_attribute
  689. When set to ``True`` (the default), required form fields will have the
  690. ``required`` HTML attribute.
  691. :doc:`Formsets </topics/forms/formsets>` instantiate forms with
  692. ``use_required_attribute=False`` to avoid incorrect browser validation when
  693. adding and deleting forms from a formset.
  694. Configuring the rendering of a form's widgets
  695. ---------------------------------------------
  696. .. attribute:: Form.default_renderer
  697. Specifies the :doc:`renderer <renderers>` to use for the form. Defaults to
  698. ``None`` which means to use the default renderer specified by the
  699. :setting:`FORM_RENDERER` setting.
  700. You can set this as a class attribute when declaring your form or use the
  701. ``renderer`` argument to ``Form.__init__()``. For example::
  702. from django import forms
  703. class MyForm(forms.Form):
  704. default_renderer = MyRenderer()
  705. or::
  706. form = MyForm(renderer=MyRenderer())
  707. Notes on field ordering
  708. -----------------------
  709. In the ``as_p()``, ``as_ul()`` and ``as_table()`` shortcuts, the fields are
  710. displayed in the order in which you define them in your form class. For
  711. example, in the ``ContactForm`` example, the fields are defined in the order
  712. ``subject``, ``message``, ``sender``, ``cc_myself``. To reorder the HTML
  713. output, change the order in which those fields are listed in the class.
  714. There are several other ways to customize the order:
  715. .. attribute:: Form.field_order
  716. By default ``Form.field_order=None``, which retains the order in which you
  717. define the fields in your form class. If ``field_order`` is a list of field
  718. names, the fields are ordered as specified by the list and remaining fields are
  719. appended according to the default order. Unknown field names in the list are
  720. ignored. This makes it possible to disable a field in a subclass by setting it
  721. to ``None`` without having to redefine ordering.
  722. You can also use the ``Form.field_order`` argument to a :class:`Form` to
  723. override the field order. If a :class:`~django.forms.Form` defines
  724. :attr:`~Form.field_order` *and* you include ``field_order`` when instantiating
  725. the ``Form``, then the latter ``field_order`` will have precedence.
  726. .. method:: Form.order_fields(field_order)
  727. You may rearrange the fields any time using ``order_fields()`` with a list of
  728. field names as in :attr:`~django.forms.Form.field_order`.
  729. How errors are displayed
  730. ------------------------
  731. If you render a bound ``Form`` object, the act of rendering will automatically
  732. run the form's validation if it hasn't already happened, and the HTML output
  733. will include the validation errors as a ``<ul class="errorlist">`` near the
  734. field. The particular positioning of the error messages depends on the output
  735. method you're using:
  736. .. code-block:: pycon
  737. >>> data = {
  738. ... "subject": "",
  739. ... "message": "Hi there",
  740. ... "sender": "invalid email address",
  741. ... "cc_myself": True,
  742. ... }
  743. >>> f = ContactForm(data, auto_id=False)
  744. >>> print(f)
  745. <div>Subject:
  746. <ul class="errorlist"><li>This field is required.</li></ul>
  747. <input type="text" name="subject" maxlength="100" required aria-invalid="true">
  748. </div>
  749. <div>Message:
  750. <textarea name="message" cols="40" rows="10" required>Hi there</textarea>
  751. </div>
  752. <div>Sender:
  753. <ul class="errorlist"><li>Enter a valid email address.</li></ul>
  754. <input type="email" name="sender" value="invalid email address" required aria-invalid="true">
  755. </div>
  756. <div>Cc myself:
  757. <input type="checkbox" name="cc_myself" checked>
  758. </div>
  759. .. _ref-forms-error-list-format:
  760. Customizing the error list format
  761. ---------------------------------
  762. .. class:: ErrorList(initlist=None, error_class=None, renderer=None)
  763. By default, forms use ``django.forms.utils.ErrorList`` to format validation
  764. errors. ``ErrorList`` is a list like object where ``initlist`` is the
  765. list of errors. In addition this class has the following attributes and
  766. methods.
  767. .. attribute:: error_class
  768. The CSS classes to be used when rendering the error list. Any provided
  769. classes are added to the default ``errorlist`` class.
  770. .. attribute:: renderer
  771. Specifies the :doc:`renderer <renderers>` to use for ``ErrorList``.
  772. Defaults to ``None`` which means to use the default renderer
  773. specified by the :setting:`FORM_RENDERER` setting.
  774. .. attribute:: template_name
  775. The name of the template used when calling ``__str__`` or
  776. :meth:`render`. By default this is
  777. ``'django/forms/errors/list/default.html'`` which is a proxy for the
  778. ``'ul.html'`` template.
  779. .. attribute:: template_name_text
  780. The name of the template used when calling :meth:`.as_text`. By default
  781. this is ``'django/forms/errors/list/text.html'``. This template renders
  782. the errors as a list of bullet points.
  783. .. attribute:: template_name_ul
  784. The name of the template used when calling :meth:`.as_ul`. By default
  785. this is ``'django/forms/errors/list/ul.html'``. This template renders
  786. the errors in ``<li>`` tags with a wrapping ``<ul>`` with the CSS
  787. classes as defined by :attr:`.error_class`.
  788. .. method:: get_context()
  789. Return context for rendering of errors in a template.
  790. The available context is:
  791. * ``errors`` : A list of the errors.
  792. * ``error_class`` : A string of CSS classes.
  793. .. method:: render(template_name=None, context=None, renderer=None)
  794. The render method is called by ``__str__`` as well as by the
  795. :meth:`.as_ul` method.
  796. All arguments are optional and will default to:
  797. * ``template_name``: Value returned by :attr:`.template_name`
  798. * ``context``: Value returned by :meth:`.get_context`
  799. * ``renderer``: Value returned by :attr:`.renderer`
  800. .. method:: as_text()
  801. Renders the error list using the template defined by
  802. :attr:`.template_name_text`.
  803. .. method:: as_ul()
  804. Renders the error list using the template defined by
  805. :attr:`.template_name_ul`.
  806. If you'd like to customize the rendering of errors this can be achieved by
  807. overriding the :attr:`.template_name` attribute or more generally by
  808. overriding the default template, see also
  809. :ref:`overriding-built-in-form-templates`.
  810. More granular output
  811. ====================
  812. The ``as_p()``, ``as_ul()``, and ``as_table()`` methods are shortcuts --
  813. they're not the only way a form object can be displayed.
  814. .. class:: BoundField
  815. Used to display HTML or access attributes for a single field of a
  816. :class:`Form` instance.
  817. The ``__str__()`` method of this object displays the HTML for this field.
  818. To retrieve a single ``BoundField``, use dictionary lookup syntax on your form
  819. using the field's name as the key:
  820. .. code-block:: pycon
  821. >>> form = ContactForm()
  822. >>> print(form["subject"])
  823. <input id="id_subject" type="text" name="subject" maxlength="100" required>
  824. To retrieve all ``BoundField`` objects, iterate the form:
  825. .. code-block:: pycon
  826. >>> form = ContactForm()
  827. >>> for boundfield in form:
  828. ... print(boundfield)
  829. ...
  830. <input id="id_subject" type="text" name="subject" maxlength="100" required>
  831. <input type="text" name="message" id="id_message" required>
  832. <input type="email" name="sender" id="id_sender" required>
  833. <input type="checkbox" name="cc_myself" id="id_cc_myself">
  834. The field-specific output honors the form object's ``auto_id`` setting:
  835. .. code-block:: pycon
  836. >>> f = ContactForm(auto_id=False)
  837. >>> print(f["message"])
  838. <input type="text" name="message" required>
  839. >>> f = ContactForm(auto_id="id_%s")
  840. >>> print(f["message"])
  841. <input type="text" name="message" id="id_message" required>
  842. Attributes of ``BoundField``
  843. ----------------------------
  844. .. attribute:: BoundField.auto_id
  845. The HTML ID attribute for this ``BoundField``. Returns an empty string
  846. if :attr:`Form.auto_id` is ``False``.
  847. .. attribute:: BoundField.data
  848. This property returns the data for this :class:`~django.forms.BoundField`
  849. extracted by the widget's :meth:`~django.forms.Widget.value_from_datadict`
  850. method, or ``None`` if it wasn't given:
  851. .. code-block:: pycon
  852. >>> unbound_form = ContactForm()
  853. >>> print(unbound_form["subject"].data)
  854. None
  855. >>> bound_form = ContactForm(data={"subject": "My Subject"})
  856. >>> print(bound_form["subject"].data)
  857. My Subject
  858. .. attribute:: BoundField.errors
  859. A :ref:`list-like object <ref-forms-error-list-format>` that is displayed
  860. as an HTML ``<ul class="errorlist">`` when printed:
  861. .. code-block:: pycon
  862. >>> data = {"subject": "hi", "message": "", "sender": "", "cc_myself": ""}
  863. >>> f = ContactForm(data, auto_id=False)
  864. >>> print(f["message"])
  865. <input type="text" name="message" required aria-invalid="true">
  866. >>> f["message"].errors
  867. ['This field is required.']
  868. >>> print(f["message"].errors)
  869. <ul class="errorlist"><li>This field is required.</li></ul>
  870. >>> f["subject"].errors
  871. []
  872. >>> print(f["subject"].errors)
  873. >>> str(f["subject"].errors)
  874. ''
  875. When rendering a field with errors, ``aria-invalid="true"`` will be set on
  876. the field's widget to indicate there is an error to screen reader users.
  877. .. attribute:: BoundField.field
  878. The form :class:`~django.forms.Field` instance from the form class that
  879. this :class:`~django.forms.BoundField` wraps.
  880. .. attribute:: BoundField.form
  881. The :class:`~django.forms.Form` instance this :class:`~django.forms.BoundField`
  882. is bound to.
  883. .. attribute:: BoundField.help_text
  884. The :attr:`~django.forms.Field.help_text` of the field.
  885. .. attribute:: BoundField.html_name
  886. The name that will be used in the widget's HTML ``name`` attribute. It takes
  887. the form :attr:`~django.forms.Form.prefix` into account.
  888. .. attribute:: BoundField.id_for_label
  889. Use this property to render the ID of this field. For example, if you are
  890. manually constructing a ``<label>`` in your template (despite the fact that
  891. :meth:`~BoundField.label_tag`/:meth:`~BoundField.legend_tag` will do this
  892. for you):
  893. .. code-block:: html+django
  894. <label for="{{ form.my_field.id_for_label }}">...</label>{{ my_field }}
  895. By default, this will be the field's name prefixed by ``id_``
  896. ("``id_my_field``" for the example above). You may modify the ID by setting
  897. :attr:`~django.forms.Widget.attrs` on the field's widget. For example,
  898. declaring a field like this::
  899. my_field = forms.CharField(widget=forms.TextInput(attrs={"id": "myFIELD"}))
  900. and using the template above, would render something like:
  901. .. code-block:: html
  902. <label for="myFIELD">...</label><input id="myFIELD" type="text" name="my_field" required>
  903. .. attribute:: BoundField.initial
  904. Use :attr:`BoundField.initial` to retrieve initial data for a form field.
  905. It retrieves the data from :attr:`Form.initial` if present, otherwise
  906. trying :attr:`Field.initial`. Callable values are evaluated. See
  907. :ref:`ref-forms-initial-form-values` for more examples.
  908. :attr:`BoundField.initial` caches its return value, which is useful
  909. especially when dealing with callables whose return values can change (e.g.
  910. ``datetime.now`` or ``uuid.uuid4``):
  911. .. code-block:: pycon
  912. >>> from datetime import datetime
  913. >>> class DatedCommentForm(CommentForm):
  914. ... created = forms.DateTimeField(initial=datetime.now)
  915. ...
  916. >>> f = DatedCommentForm()
  917. >>> f["created"].initial
  918. datetime.datetime(2021, 7, 27, 9, 5, 54)
  919. >>> f["created"].initial
  920. datetime.datetime(2021, 7, 27, 9, 5, 54)
  921. Using :attr:`BoundField.initial` is recommended over
  922. :meth:`~Form.get_initial_for_field()`.
  923. .. attribute:: BoundField.is_hidden
  924. Returns ``True`` if this :class:`~django.forms.BoundField`'s widget is
  925. hidden.
  926. .. attribute:: BoundField.label
  927. The :attr:`~django.forms.Field.label` of the field. This is used in
  928. :meth:`~BoundField.label_tag`/:meth:`~BoundField.legend_tag`.
  929. .. attribute:: BoundField.name
  930. The name of this field in the form:
  931. .. code-block:: pycon
  932. >>> f = ContactForm()
  933. >>> print(f["subject"].name)
  934. subject
  935. >>> print(f["message"].name)
  936. message
  937. .. attribute:: BoundField.template_name
  938. The name of the template rendered with :meth:`.BoundField.as_field_group`.
  939. A property returning the value of the
  940. :attr:`~django.forms.Field.template_name` if set otherwise
  941. :attr:`~django.forms.renderers.BaseRenderer.field_template_name`.
  942. .. attribute:: BoundField.use_fieldset
  943. Returns the value of this BoundField widget's ``use_fieldset`` attribute.
  944. .. attribute:: BoundField.widget_type
  945. Returns the lowercased class name of the wrapped field's widget, with any
  946. trailing ``input`` or ``widget`` removed. This may be used when building
  947. forms where the layout is dependent upon the widget type. For example:
  948. .. code-block:: html+django
  949. {% for field in form %}
  950. {% if field.widget_type == 'checkbox' %}
  951. # render one way
  952. {% else %}
  953. # render another way
  954. {% endif %}
  955. {% endfor %}
  956. Methods of ``BoundField``
  957. -------------------------
  958. .. method:: BoundField.as_field_group()
  959. Renders the field using :meth:`.BoundField.render` with default values
  960. which renders the ``BoundField``, including its label, help text and errors
  961. using the template's :attr:`~django.forms.Field.template_name` if set
  962. otherwise :attr:`~django.forms.renderers.BaseRenderer.field_template_name`
  963. .. method:: BoundField.as_hidden(attrs=None, **kwargs)
  964. Returns a string of HTML for representing this as an ``<input type="hidden">``.
  965. ``**kwargs`` are passed to :meth:`~django.forms.BoundField.as_widget`.
  966. This method is primarily used internally. You should use a widget instead.
  967. .. method:: BoundField.as_widget(widget=None, attrs=None, only_initial=False)
  968. Renders the field by rendering the passed widget, adding any HTML
  969. attributes passed as ``attrs``. If no widget is specified, then the
  970. field's default widget will be used.
  971. ``only_initial`` is used by Django internals and should not be set
  972. explicitly.
  973. .. method:: BoundField.css_classes(extra_classes=None)
  974. When you use Django's rendering shortcuts, CSS classes are used to
  975. indicate required form fields or fields that contain errors. If you're
  976. manually rendering a form, you can access these CSS classes using the
  977. ``css_classes`` method:
  978. .. code-block:: pycon
  979. >>> f = ContactForm(data={"message": ""})
  980. >>> f["message"].css_classes()
  981. 'required'
  982. If you want to provide some additional classes in addition to the
  983. error and required classes that may be required, you can provide
  984. those classes as an argument:
  985. .. code-block:: pycon
  986. >>> f = ContactForm(data={"message": ""})
  987. >>> f["message"].css_classes("foo bar")
  988. 'foo bar required'
  989. .. method:: BoundField.get_context()
  990. Return the template context for rendering the field. The available context
  991. is ``field`` being the instance of the bound field.
  992. .. method:: BoundField.label_tag(contents=None, attrs=None, label_suffix=None, tag=None)
  993. Renders a label tag for the form field using the template specified by
  994. :attr:`.Form.template_name_label`.
  995. The available context is:
  996. * ``field``: This instance of the :class:`BoundField`.
  997. * ``contents``: By default a concatenated string of
  998. :attr:`BoundField.label` and :attr:`Form.label_suffix` (or
  999. :attr:`Field.label_suffix`, if set). This can be overridden by the
  1000. ``contents`` and ``label_suffix`` arguments.
  1001. * ``attrs``: A ``dict`` containing ``for``,
  1002. :attr:`Form.required_css_class`, and ``id``. ``id`` is generated by the
  1003. field's widget ``attrs`` or :attr:`BoundField.auto_id`. Additional
  1004. attributes can be provided by the ``attrs`` argument.
  1005. * ``use_tag``: A boolean which is ``True`` if the label has an ``id``.
  1006. If ``False`` the default template omits the ``tag``.
  1007. * ``tag``: An optional string to customize the tag, defaults to ``label``.
  1008. .. tip::
  1009. In your template ``field`` is the instance of the ``BoundField``.
  1010. Therefore ``field.field`` accesses :attr:`BoundField.field` being
  1011. the field you declare, e.g. ``forms.CharField``.
  1012. To separately render the label tag of a form field, you can call its
  1013. ``label_tag()`` method:
  1014. .. code-block:: pycon
  1015. >>> f = ContactForm(data={"message": ""})
  1016. >>> print(f["message"].label_tag())
  1017. <label for="id_message">Message:</label>
  1018. If you'd like to customize the rendering this can be achieved by overriding
  1019. the :attr:`.Form.template_name_label` attribute or more generally by
  1020. overriding the default template, see also
  1021. :ref:`overriding-built-in-form-templates`.
  1022. .. method:: BoundField.legend_tag(contents=None, attrs=None, label_suffix=None)
  1023. Calls :meth:`.label_tag` with ``tag='legend'`` to render the label with
  1024. ``<legend>`` tags. This is useful when rendering radio and multiple
  1025. checkbox widgets where ``<legend>`` may be more appropriate than a
  1026. ``<label>``.
  1027. .. method:: BoundField.render(template_name=None, context=None, renderer=None)
  1028. The render method is called by ``as_field_group``. All arguments are
  1029. optional and default to:
  1030. * ``template_name``: :attr:`.BoundField.template_name`
  1031. * ``context``: Value returned by :meth:`.BoundField.get_context`
  1032. * ``renderer``: Value returned by :attr:`.Form.default_renderer`
  1033. By passing ``template_name`` you can customize the template used for just a
  1034. single call.
  1035. .. method:: BoundField.value()
  1036. Use this method to render the raw value of this field as it would be rendered
  1037. by a ``Widget``:
  1038. .. code-block:: pycon
  1039. >>> initial = {"subject": "welcome"}
  1040. >>> unbound_form = ContactForm(initial=initial)
  1041. >>> bound_form = ContactForm(data={"subject": "hi"}, initial=initial)
  1042. >>> print(unbound_form["subject"].value())
  1043. welcome
  1044. >>> print(bound_form["subject"].value())
  1045. hi
  1046. Customizing ``BoundField``
  1047. ==========================
  1048. If you need to access some additional information about a form field in a
  1049. template and using a subclass of :class:`~django.forms.Field` isn't
  1050. sufficient, consider also customizing :class:`~django.forms.BoundField`.
  1051. A custom form field can override ``get_bound_field()``:
  1052. .. method:: Field.get_bound_field(form, field_name)
  1053. Takes an instance of :class:`~django.forms.Form` and the name of the field.
  1054. The return value will be used when accessing the field in a template. Most
  1055. likely it will be an instance of a subclass of
  1056. :class:`~django.forms.BoundField`.
  1057. If you have a ``GPSCoordinatesField``, for example, and want to be able to
  1058. access additional information about the coordinates in a template, this could
  1059. be implemented as follows::
  1060. class GPSCoordinatesBoundField(BoundField):
  1061. @property
  1062. def country(self):
  1063. """
  1064. Return the country the coordinates lie in or None if it can't be
  1065. determined.
  1066. """
  1067. value = self.value()
  1068. if value:
  1069. return get_country_from_coordinates(value)
  1070. else:
  1071. return None
  1072. class GPSCoordinatesField(Field):
  1073. def get_bound_field(self, form, field_name):
  1074. return GPSCoordinatesBoundField(form, self, field_name)
  1075. Now you can access the country in a template with
  1076. ``{{ form.coordinates.country }}``.
  1077. .. _binding-uploaded-files:
  1078. Binding uploaded files to a form
  1079. ================================
  1080. Dealing with forms that have ``FileField`` and ``ImageField`` fields
  1081. is a little more complicated than a normal form.
  1082. Firstly, in order to upload files, you'll need to make sure that your
  1083. ``<form>`` element correctly defines the ``enctype`` as
  1084. ``"multipart/form-data"``:
  1085. .. code-block:: html
  1086. <form enctype="multipart/form-data" method="post" action="/foo/">
  1087. Secondly, when you use the form, you need to bind the file data. File
  1088. data is handled separately to normal form data, so when your form
  1089. contains a ``FileField`` and ``ImageField``, you will need to specify
  1090. a second argument when you bind your form. So if we extend our
  1091. ContactForm to include an ``ImageField`` called ``mugshot``, we
  1092. need to bind the file data containing the mugshot image:
  1093. .. code-block:: pycon
  1094. # Bound form with an image field
  1095. >>> from django.core.files.uploadedfile import SimpleUploadedFile
  1096. >>> data = {
  1097. ... "subject": "hello",
  1098. ... "message": "Hi there",
  1099. ... "sender": "foo@example.com",
  1100. ... "cc_myself": True,
  1101. ... }
  1102. >>> file_data = {"mugshot": SimpleUploadedFile("face.jpg", b"file data")}
  1103. >>> f = ContactFormWithMugshot(data, file_data)
  1104. In practice, you will usually specify ``request.FILES`` as the source
  1105. of file data (just like you use ``request.POST`` as the source of
  1106. form data):
  1107. .. code-block:: pycon
  1108. # Bound form with an image field, data from the request
  1109. >>> f = ContactFormWithMugshot(request.POST, request.FILES)
  1110. Constructing an unbound form is the same as always -- omit both form data *and*
  1111. file data:
  1112. .. code-block:: pycon
  1113. # Unbound form with an image field
  1114. >>> f = ContactFormWithMugshot()
  1115. Testing for multipart forms
  1116. ---------------------------
  1117. .. method:: Form.is_multipart()
  1118. If you're writing reusable views or templates, you may not know ahead of time
  1119. whether your form is a multipart form or not. The ``is_multipart()`` method
  1120. tells you whether the form requires multipart encoding for submission:
  1121. .. code-block:: pycon
  1122. >>> f = ContactFormWithMugshot()
  1123. >>> f.is_multipart()
  1124. True
  1125. Here's an example of how you might use this in a template:
  1126. .. code-block:: html+django
  1127. {% if form.is_multipart %}
  1128. <form enctype="multipart/form-data" method="post" action="/foo/">
  1129. {% else %}
  1130. <form method="post" action="/foo/">
  1131. {% endif %}
  1132. {{ form }}
  1133. </form>
  1134. Subclassing forms
  1135. =================
  1136. If you have multiple ``Form`` classes that share fields, you can use
  1137. subclassing to remove redundancy.
  1138. When you subclass a custom ``Form`` class, the resulting subclass will
  1139. include all fields of the parent class(es), followed by the fields you define
  1140. in the subclass.
  1141. In this example, ``ContactFormWithPriority`` contains all the fields from
  1142. ``ContactForm``, plus an additional field, ``priority``. The ``ContactForm``
  1143. fields are ordered first:
  1144. .. code-block:: pycon
  1145. >>> class ContactFormWithPriority(ContactForm):
  1146. ... priority = forms.CharField()
  1147. ...
  1148. >>> f = ContactFormWithPriority(auto_id=False)
  1149. >>> print(f)
  1150. <div>Subject:<input type="text" name="subject" maxlength="100" required></div>
  1151. <div>Message:<textarea name="message" cols="40" rows="10" required></textarea></div>
  1152. <div>Sender:<input type="email" name="sender" required></div>
  1153. <div>Cc myself:<input type="checkbox" name="cc_myself"></div>
  1154. <div>Priority:<input type="text" name="priority" required></div>
  1155. It's possible to subclass multiple forms, treating forms as mixins. In this
  1156. example, ``BeatleForm`` subclasses both ``PersonForm`` and ``InstrumentForm``
  1157. (in that order), and its field list includes the fields from the parent
  1158. classes:
  1159. .. code-block:: pycon
  1160. >>> from django import forms
  1161. >>> class PersonForm(forms.Form):
  1162. ... first_name = forms.CharField()
  1163. ... last_name = forms.CharField()
  1164. ...
  1165. >>> class InstrumentForm(forms.Form):
  1166. ... instrument = forms.CharField()
  1167. ...
  1168. >>> class BeatleForm(InstrumentForm, PersonForm):
  1169. ... haircut_type = forms.CharField()
  1170. ...
  1171. >>> b = BeatleForm(auto_id=False)
  1172. >>> print(b)
  1173. <div>First name:<input type="text" name="first_name" required></div>
  1174. <div>Last name:<input type="text" name="last_name" required></div>
  1175. <div>Instrument:<input type="text" name="instrument" required></div>
  1176. <div>Haircut type:<input type="text" name="haircut_type" required></div>
  1177. It's possible to declaratively remove a ``Field`` inherited from a parent class
  1178. by setting the name of the field to ``None`` on the subclass. For example:
  1179. .. code-block:: pycon
  1180. >>> from django import forms
  1181. >>> class ParentForm(forms.Form):
  1182. ... name = forms.CharField()
  1183. ... age = forms.IntegerField()
  1184. ...
  1185. >>> class ChildForm(ParentForm):
  1186. ... name = None
  1187. ...
  1188. >>> list(ChildForm().fields)
  1189. ['age']
  1190. .. _form-prefix:
  1191. Prefixes for forms
  1192. ==================
  1193. .. attribute:: Form.prefix
  1194. You can put several Django forms inside one ``<form>`` tag. To give each
  1195. ``Form`` its own namespace, use the ``prefix`` keyword argument:
  1196. .. code-block:: pycon
  1197. >>> mother = PersonForm(prefix="mother")
  1198. >>> father = PersonForm(prefix="father")
  1199. >>> print(mother)
  1200. <div><label for="id_mother-first_name">First name:</label><input type="text" name="mother-first_name" required id="id_mother-first_name"></div>
  1201. <div><label for="id_mother-last_name">Last name:</label><input type="text" name="mother-last_name" required id="id_mother-last_name"></div>
  1202. >>> print(father)
  1203. <div><label for="id_father-first_name">First name:</label><input type="text" name="father-first_name" required id="id_father-first_name"></div>
  1204. <div><label for="id_father-last_name">Last name:</label><input type="text" name="father-last_name" required id="id_father-last_name"></div>
  1205. The prefix can also be specified on the form class:
  1206. .. code-block:: pycon
  1207. >>> class PersonForm(forms.Form):
  1208. ... ...
  1209. ... prefix = "person"
  1210. ...