summaryrefslogtreecommitdiff
path: root/docs/ref/forms
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #34380 -- Allowed specifying a default URL scheme in forms.URLField.Coen van der Kamp2023-04-281-2/+12
| | | | This also deprecates "http" as the default scheme.
* Fixed #34431 -- Improved Date/DateTimeField/TimeField.input_formats docs.Edison Wang2023-04-031-3/+3
|
* Fixed typos in docs/ref/forms/renderers.txt.Mariusz Felisiak2023-03-241-2/+2
|
* Fixed #34077 -- Added form field rendering.David Smith2023-03-243-0/+84
|
* Fixed #34388 -- Allowed using choice enumeration types directly on model and ↵T. Franzel2023-03-211-1/+6
| | | | form fields.
* Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot2023-03-015-191/+270
|
* Refs #34140 -- Corrected rst code-block and various formatting issues in docs.Joseph Victor Zammit2023-02-282-2/+2
|
* Refs #32339 -- Doc'd setting a form's template_name is recomended over using ↵David Smith2023-02-151-17/+16
| | | | as_* methods.
* Refs #32339 -- Updated docs to reflect default <div> style form rendering in ↵David Smith2023-02-153-86/+57
| | | | | | Django 5.0. Follow up to 98756c685ee173bbd43f21ed0553f808be835ce5.
* Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson2023-02-103-78/+218
| | | | | Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
* Refs #32339 -- Deprecated transitional form renderers.Mariusz Felisiak2023-01-181-19/+4
|
* Refs #32339 -- Changed default form and formset rendering style to div-based.Mariusz Felisiak2023-01-171-16/+2
| | | | | | | Per deprecation timeline. This also removes "django/forms/default.html" and "django/forms/formsets/default.html" templates.
* Refs #31026 -- Removed ability to return string when rendering ↵Mariusz Felisiak2023-01-171-5/+0
| | | | | | ErrorDict/ErrorList. Per deprecation timeline.
* Refs #32873 -- Removed settings.USE_L10N per deprecation timeline.Mariusz Felisiak2023-01-171-12/+9
|
* Removed versionadded/changed annotations for 4.1.Mariusz Felisiak2023-01-175-43/+0
|
* Refs #32339 -- Updated Form API docs to prefer as_div() output style.David Smith2022-12-071-85/+60
|
* Fixed #33842 -- Used :source: role for links to repo files on GitHub.Ramil Yanbulatov2022-08-091-4/+4
|
* Fixed typo in docs/ref/forms/renderers.txt.Mariusz Felisiak2022-08-061-1/+1
| | | Thanks Josh for the report.
* Fixed documentation of Widget.id_for_label() empty return value.Swann2022-06-031-1/+2
|
* Removed versionadded/changed annotations for 4.0.Carlton Gibson2022-05-176-63/+0
|
* Refs #32339 -- Deprecated default.html form template.David Smith2022-05-171-0/+43
| | | | Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
* Fixed #32559 -- Added 'step_size’ to numeric form fields.Kapil Bansal2022-05-121-15/+46
| | | | Co-authored-by: Jacob Rief <jacob.rief@uibk.ac.at>
* Fixed #32339 -- Added div.html form template.David Smith2022-05-051-0/+49
|
* Refs #32339 -- Restructured outputting HTML form docs.Carlton Gibson2022-05-041-50/+78
| | | | | | | | | | In the topic doc, promoted the Reusable form templates section. In the reference, re-grouped and promoted the default __str__() rendering path, and then gathered the various as_*() helpers subsequently. Thanks to David Smith for review.
* Fixed #33658 -- Doc'd ModelChoiceField.blank attribute.Alokik Vijay2022-05-031-4/+13
| | | | Thanks Mariusz Felisiak for reviewing.
* Refs #32339 -- Allowed renderer to specify default form and formset templates.Carlton Gibson2022-04-272-8/+39
| | | | Co-authored-by: David Smith <smithdc@gmail.com>
* Refs #32339 -- Added base form renderer to docs.Carlton Gibson2022-04-271-0/+14
|
* Refs #32339 -- Added use_fieldset to Widget.David2022-03-302-0/+19
|
* Fixed #26142 -- Allowed model formsets to prevent new object creation.vgolubev2022-01-271-2/+13
| | | | | | Thanks Jacob Walls, David Smith, and Mariusz Felisiak for reviews. Co-authored-by: parth <parthvin@gmail.com>
* Avoided counting attributes and methods in docs.Mariusz Felisiak2021-12-281-4/+4
|
* Refs #31026 -- Updated TemplatesSetting docs to refer to forms.David Smith2021-12-221-6/+6
|
* Refs #32338 -- Added Boundfield.legend_tag().David Smith2021-12-091-8/+28
|
* Fixed #33334 -- Alphabetized form and model fields in reference docs.Shivam Durgbuns2021-12-021-89/+89
|
* Refs #31026 -- Improved BoundField.label_tag() docs.David Smith2021-10-061-11/+27
|
* Removed versionadded/changed annotations for 3.2.Mariusz Felisiak2021-09-202-12/+0
|
* Fixed #31026 -- Switched form rendering to template engine.David Smith2021-09-204-44/+245
| | | | | | | Thanks Carlton Gibson, Keryn Knight, Mariusz Felisiak, and Nick Pope for reviews. Co-authored-by: Johannes Hoppe <info@johanneshoppe.com>
* Refs #32338 -- Made RadioSelect/CheckboxSelectMultiple render in <div> tags.David Smith2021-08-271-11/+21
| | | | This improves accessibility for screen reader users.
* Fixed #32964 -- Corrected 'setup'/'set up' usage in docs.Andrew Northall2021-08-171-1/+1
|
* Fixed 32956 -- Lowercased spelling of "web" and "web framework" where ↵David Smith2021-07-291-2/+2
| | | | appropriate.
* Fixed #32933 -- Documented BoundField.initial as preferred over ↵Chris Jerdonek2021-07-271-5/+51
| | | | Form.get_initial_for_field().
* Refs #32338 -- Improved accessibility of RadioSelect examples in docs.David Smith2021-06-041-38/+47
| | | | Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
* Fixed typo in docs/ref/forms/widgets.txt.Brad Solomon2021-02-011-1/+1
|
* Fixed #32347 -- Made ModelChoiceField include the value in ValidationError ↵Jerin Peter George2021-01-261-0/+8
| | | | for invalid_choice.
* Refs #8760 -- Removed "list" message for ModelMultipleChoiceField per ↵Mariusz Felisiak2021-01-141-4/+0
| | | | deprecation timeline.
* Removed versionadded/changed annotations for 3.1.Mariusz Felisiak2021-01-143-31/+0
|
* Fixed typo in docs/ref/forms/widgets.txt.Mariusz Felisiak2020-12-151-1/+1
| | | Thanks rgs258 for the report.
* Added backticks to code literals in various docs.Jon Dufresne2020-12-151-1/+1
|
* Fixed #32110 -- Doc'd and tested enumerations for ChoiceField.choices.Claude Paroz2020-10-171-6/+7
|
* Fixed #23681, Fixed #27445 -- Doc'd setting choices for NullBooleanField ↵Jacob Walls2020-10-081-0/+14
| | | | | | | widgets. Thanks to David Smith for investigation and review. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
* Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith2020-09-251-18/+17
|