| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-05 | Corrected example in Form.has_changed() docs. | Tim Graham | |
| 2014-08-15 | Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed(). | Gabriel Muñumel | |
| 2014-08-14 | Fixed a grammar error in docs/ref/forms/api.txt. | Zhaorong Ma | |
| 2014-08-05 | Fixed #21792 -- Documented Form.has_changed() | Tim Graham | |
| Thanks bjb at credil.org for the suggestion and Ivan Mesic for the draft patch. | |||
| 2014-06-30 | Fixed #21942 -- Moved Form.clean() to form API docs. | Tim Graham | |
| Thanks cjerdonek for the suggestion. | |||
| 2014-06-24 | Fixed #22796 -- Added a more basic explanations of forms. | Daniele Procida | |
| Thanks bmispelon, kezabelle, jorgecarleitao, and timgraham for reviews. | |||
| 2014-05-24 | Fixed #22510 -- Harden field removal to only None. | Marc Tamlyn | |
| 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. | |||
| 2014-05-13 | Fixed #22533 -- Added label_suffix parameter to form fields. | Julen Ruiz Aizpuru | |
| Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134. | |||
| 2014-04-05 | Fixed #22216 -- Added Form.non_field_errors to form API doc. | Tim Graham | |
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-24 | Fixed #17922 -- Added required_css_class to form label. | Anubhav Joshi | |
| Thanks hanson2010 for the suggestion. | |||
| 2014-03-24 | Fixed #22318 -- Added Form.has_error() to easily check if a given error has ↵ | Loic Bistuer | |
| happened. | |||
| 2014-03-22 | Fixed #22313 -- Removed 'u' prefixes from documentation | Claude Paroz | |
| 2014-02-28 | Fixed #21962 -- Added escape_html flag to ErrorDict.as_json() | vvojvoda | |
| 2014-02-14 | Fixed #21654 -- Documented a use-case for Form.errors.as_data(). | Loic Bistuer | |
| Thanks selwin for the suggestion. | |||
| 2014-02-13 | Fixed #21951 -- Updated docs to use __str__ for Python 3 | Alasdair Nicol | |
| Thanks Tim Graham for the report and recommendations | |||
| 2014-01-22 | Always use parentheses when documenting a method with no arguments. | Baptiste Mispelon | |
| 2014-01-02 | Fixed #21319 -- Added documentation for the Form.fields attribute. | Vajrasky Kok | |
| Thanks pydanny for the report. Also, added documentation about base_fields attribute and its difference with fields attribute. | |||
| 2013-12-16 | Fixed #17413 -- Serialization of form errors along with all metadata. | Loic Bistuer | |
| 2013-11-30 | Removed Form._errors from the docs in favor of the add_error API. | Loic Bistuer | |
| 2013-11-30 | Fixed #20867 -- Added the Form.add_error() method. | Loic Bistuer | |
| Refs #20199 #16986. Thanks @akaariai, @bmispelon, @mjtamlyn, @timgraham for the reviews. | |||
| 2013-10-14 | Fixed #8620 -- Updated the Form metaclass to support excluding fields by ↵ | Loic Bistuer | |
| shadowing them. | |||
| 2013-10-12 | Forms docs: More emphasis in 'id' value customizability. | Ramiro Morales | |
| 2013-09-16 | Fixed #17627 -- Renamed util.py files to utils.py | Tim Graham | |
| Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch. | |||
| 2013-08-19 | Removed versionadded/changed annotations for 1.5 | Tim Graham | |
| 2013-07-26 | Fixed #20805 -- Removed an extra colon beside checkboxes in the admin. | Tim Graham | |
| Thanks CollinAnderson for the report. | |||
| 2013-07-13 | Fixed #20582 -- Allowed default Form.label_suffix to be translated | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2013-07-05 | Fixed #20224 -- Update docs examples which mention __unicode__ | Claude Paroz | |
| Thanks Marc Tamlyn and Tim Graham for the review. | |||
| 2013-07-02 | A couple more semicolon -> colon fixes; refs #18134. | Tim Graham | |
| 2013-06-10 | Fixed #18134 -- BoundField.label_tag now includes the form's label_suffix | Gabe Jackson | |
| There was an inconsistency between how the label_tag for forms were generated depending on which method was used: as_p, as_ul and as_table contained code to append the label_suffix where as label_tag called on a form field directly did NOT append the label_suffix. The code for appending the label_suffix has been moved in to the label_tag code of the field and the HTML generation code for as_p, as_ul and as_table now calls this code as well. This is a backwards incompatible change because users who have added the label_suffix manually in their templates may now get double label_suffix characters in their forms. | |||
| 2013-06-09 | Fixed #20567 - Documented BoundField.id_for_label. | Tim Graham | |
| Thanks littlepig for the suggestion. | |||
| 2013-05-19 | add missing imports to the examples in the 'Forms' | leandrafinger | |
| 2013-04-12 | Documented BoundField.label_tag | Claude Paroz | |
| 2013-01-28 | Added HTML5 url input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-23 | Fixed #19610 - Added enctype note to forms topics doc. | Tim Graham | |
| Thanks will@ for the suggestion. | |||
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2012-12-26 | Fixed broken links, round 3. refs #19516 | Tim Graham | |
| 2012-09-26 | Fixed #17899 -- Rewrote [Ee]-mail to [Ee]mail | Adrien Lemaire | |
| 2012-09-20 | Fixed #18934 - Removed versionadded/changed annotations for Django 1.3 | Tim Graham | |
| 2012-08-04 | Fixed #5524 -- Do not remove cleaned_data when a form fails validation | Claude Paroz | |
| cleaned_data is no longer deleted when form validation fails but only contains the data that did validate. Thanks to the various contributors to this patch (see ticket). | |||
| 2012-06-07 | Removed references to changes made in 1.2. | Aymeric Augustin | |
| Thanks Florian Apolloner for the patch. | |||
| 2012-04-30 | Replaced print statement by print function (forward compatibility syntax). | Claude Paroz | |
| 2011-10-14 | Fixed many more ReST indentation errors, somehow accidentally missed from ↵ | Luke Plant | |
| [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-04-01 | Fixed some ReST errors from e-mail -> email change in docs, and changed some ↵ | Adrian Holovaty | |
| docs that shouldn't have been changed (because translation strings haven't been converted yet) git-svn-id: http://code.djangoproject.com/svn/django/trunk@15968 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-04-01 | Changed e-mail to email throughout documentation and codebase. The one ↵ | Adrian Holovaty | |
| exception is translation strings, which I didn't want to disrupt git-svn-id: http://code.djangoproject.com/svn/django/trunk@15967 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-03-22 | Fixed typo in forms API documentation. | Simon Meers | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@15896 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-03-07 | Fix the documentation of BoundField.value() to reference the correct method name | Chris Beaven | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@15772 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-12-26 | Fixed #14000 - remove versionadded/changed tags for Django 1.0 and 1.1 | Timo Graham | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-11-28 | Fixes #10427 -- Abstract the value generation of a BoundField | Chris Beaven | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@14734 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
