Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/topics/forms
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #21516 -- Updated imports paths for some formset ↵Bryan Marty2015-10-282-28/+28
| | | | | | | functions/classes. Since refs #21489, FormSet classes and factories are exposed on the django.forms package.
* Fixed #25508 -- Modified QuerySet.__repr__() to ↵Tim Graham2015-10-061-1/+1
| | | | disambiguate it from a list.
* Fixed #25481 -- Added field.help_text to "Looping over a ↵John Moses2015-10-021-0/+3
| | | | form's fields" docs.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-242-16/+0
|
* Fixed #12856 -- Documented BoundField API.Moritz Sichert2015-09-211-0/+5
|
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-3/+11
| | | | on_delete for ForeignKey/OneToOneField
* Added release notes for feature added in fe21fb81Russell Keith-Magee2015-06-051-0/+2
|
* Fixed #18166 -- Added form_kwargs support to formsets.Sergei Maertens2015-06-041-0/+39
| | | | | | | | By specifying form_kwargs when instantiating the formset, or overriding the `get_form_kwargs` method on a formset class, you can pass extra keyword arguments to the underlying `Form` instances. Includes tests and documentation update.
* Fixed mistakes in docs/topics/forms/formsets.txt examples.I am Clinton2015-05-221-2/+2
|
* Light edits to docs/topics/forms/index.txtI am Clinton2015-05-121-12/+12
|
* Updated capitalization in the word "JavaScript" for ↵Dave Hodder2015-05-011-1/+1
| | | | consistency
* Fixed #24684 -- Typo in docs/topics/forms/modelforms.txtTim Graham2015-04-221-1/+1
|
* Fixed #24674 -- Documented the correct NullBooleanField ↵Simon Charette2015-04-201-1/+1
| | | | | | formfield. Thanks to knbk for the report.
* Specified file names for example code in ↵Patrik Lundin2015-04-071-4/+18
| | | | docs/topics/forms/index.txt
* Fixed #24541 -- Clarified ModelFormSet's handling of ↵Tim Graham2015-03-281-1/+2
| | | | initial data.
* Fixed typo in docs/topics/forms/modelforms.txtSaeX2015-03-281-1/+1
|
* Fixed typo in docs/topics/forms/modelforms.txt.Dan Fellin2015-03-121-1/+1
|
* Fixed typo in docs/topics/forms/modelforms.txt.Tim Graham2015-03-101-7/+7
|
* Fixed #24456 -- Update modelforms.txt table of ↵Psilo Cybin2015-03-081-35/+40
| | | | | | | Form/Model refs Added links to the Form/Model table to the field reference docs to point to their individual field references
* Fixed #13015 -- Clarified language about model instances ↵Tim Graham2015-03-031-3/+18
| | | | attached to forms.
* Fixed #24295 -- Allowed ModelForm meta to specify form ↵Loic Bistuer2015-02-131-8/+15
| | | | | | field classes. Thanks Carl Meyer and Markus Holtermann for the reviews.
* Fixed #24255 -- Specifed 'fields' parameter in ↵Matt Westcott2015-02-021-33/+33
| | | | modelformset_factory / inlineformset_factory examples.
* Removed versionadded/changed notes for 1.7.Tim Graham2015-02-022-36/+9
|
* Fixed #24083 -- Corrected is_bound nature in forms topic ↵Claude Paroz2015-01-061-2/+2
| | | | | | docs Thanks ajenhl Trac user for the report.
* Fixed display of lists after website redesignMarkus Holtermann2014-12-171-3/+3
| | | | Thanks Brian Jacobel for the report. refs django/djangoproject.com#197
* Fixed #23955 -- Corrected formset fields in topic guide.Young Yang2014-12-051-1/+1
|
* Fixed typo in docs/topics/forms/modelforms.txt.wrwrwr2014-11-271-4/+3
|
* Fixed #23690 - fixed examples of manual rendering of ↵nmundar2014-11-151-4/+16
| | | | | | form fields Documentation for rendering form fields manually is now updated to use fields id_for_label instead of hardcoded values with additional mention of label_tag for alternative generation of complete label tag.
* Fixed spelling errors in docs.Tim Graham2014-11-111-1/+1
|
* Fixed versionchanged indentation in docs/.Berker Peksag2014-11-041-2/+4
|
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-031-2/+2
|
* Replaced input by textarea in forms docsClaude Paroz2014-09-251-3/+3
|
* Fixed typo in topics/forms/formsets.txtTim Graham2014-09-101-1/+1
|
* Fixed #23307 -- Clarified the way max_num limits the ↵Octowl2014-09-081-8/+13
| | | | | | output of formsets. Thanks velle for the report.
* Fixed #23075 -- Added documentation on novalidate ↵Erik Romijn2014-08-261-0/+10
| | | | | | attribute and made it default for admin Thanks to sehmaschine for the report and to Tim Graham for the review.
* Removed unnecessary code-block directives.areski2014-08-193-20/+12
|
* Fixed and enhanced new HTML form docs.Matt Deacalion Stevens2014-06-261-90/+91
|
* Fixed typo in revamped forms intro doc.Ramiro Morales2014-06-251-1/+1
|
* Fixed #22796 -- Added a more basic explanations of forms.Daniele Procida2014-06-242-225/+509
| | | | Thanks bmispelon, kezabelle, jorgecarleitao, and timgraham for reviews.
* Fixed #22747 -- Add backwards compatibility tip for new ↵Tim Graham2014-06-041-0/+12
| | | | | | behavior of formset.save(commit=False). Thanks django at patjack.co.uk.
* Fixed #11776 -- Added CSS class for non-field/top of ↵Nick Presta2014-06-021-0/+11
| | | | | | form errors. Thanks Daniel Pope for the suggestion.
* Fixed #22510 -- Harden field removal to only None.Marc Tamlyn2014-05-241-4/+2
| | | | | | | | | | | | | | | | Refs #8620. If we allow any value to remove form fields then we get name clashes with method names, media classes etc. There was a backwards incompatibility introduced meaning ModelForm subclasses with declared fields called media or clean would lose those fields. Field removal is now only permitted by using the sentinel value None. The docs have been slightly reworded to refer to removal of fields rather than shadowing. Thanks to gcbirzan for the report and initial patch, and several of the core team for opinions.
* Fixed #22639 -- Added missing imports in docsNiclas Åhdén2014-05-211-0/+3
| | | | Added ModelForm and NON_FIELD_ERRORS imports.
* Fixed #22622 -- Added ugettext_lazy import in docsNiclas Åhdén2014-05-161-0/+2
|
* Various documentation typo/spelling fixesMarti Raudsepp2014-04-231-1/+1
| | | | | Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand.
* Corrected an import in a model form docs example.Ramiro Morales2014-03-311-1/+1
|
* Removed versionadded/changed annotations for 1.6.Tim Graham2014-03-243-33/+6
|
* Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz2014-03-222-86/+86
|
* Made ModelForms raise ImproperlyConfigured if the list ↵Tim Graham2014-03-221-6/+4
| | | | | | | | of fields is not specified. Also applies to modelform(set)_factory and generic model views. refs #19733.
* Fixed spelling mistakes in docs.Tim Graham2014-03-011-2/+2
|