summaryrefslogtreecommitdiff
path: root/django/forms/forms.py
AgeCommit message (Expand)Author
2013-09-21[1.6.x] Ensured that BoundField.as_widget always returns properly localized f...Florian Apolloner
2013-08-22[1.6.x] Moved translator comment just above the target stringClaude Paroz
2013-07-26[1.6.x] Fixed #20805 -- Removed an extra colon beside checkboxes in the admin.Tim Graham
2013-07-13[1.6.x] Fixed #20582 -- Allowed default Form.label_suffix to be translatedClaude Paroz
2013-06-18Fixed #20618 -- Fixed regression in `BoundField.label_tag`.Baptiste Mispelon
2013-06-10Fixed #18134 -- BoundField.label_tag now includes the form's label_suffixGabe Jackson
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-25Fixed #11725 -- Made possible to create widget label tag without "for"Claude Paroz
2013-05-22Fixed #18709 -- Check if initial_value is a callableJeroen Dekkers
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
2013-04-12Fixed #20211: Document backwards-incompatible change in BoundField.label_tagBaptiste Mispelon
2013-03-08Fixed a regression in forms changed_dataClaude Paroz
2013-03-01Fixed #16612 -- Improved has_changed detection for localized field valuesClaude Paroz
2013-02-24Fixed #19908 -- Added missing import in forms.pyClaude Paroz
2013-01-30fixed minor typo #19703Simon Kerr
2013-01-26Fixed #18483 -- Marked hidden field error string for translationClaude Paroz
2013-01-25Used property decorators in django/forms.pyClaude Paroz
2013-01-25Moved has_changed logic from widget to form fieldClaude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-04Fixed #5524 -- Do not remove cleaned_data when a form fails validationClaude Paroz
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Used six.with_metaclass wherever necessary.Aymeric Augustin
2012-07-06Fixed #18572 - Python26 string format incompatibilityLuke Plant
2012-07-03Changed a lot of internal code to use 'format_html' where appropriate/possibleLuke Plant
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-02-05Made a minor tweak to a doctoring in `django/forms.forms.py` that was missed ...Julien Phalip
2012-01-19Clean up the form's code a little bit, to make it more consistantly go throug...Alex Gaynor
2011-12-07Changed BoundField.subwidgets() to return SubWidget objects instead of render...Adrian Holovaty
2011-12-07Made BoundFields iterable, so that you can iterate over individual radio butt...Adrian Holovaty
2011-10-18Remove comments referencing encryption. Django doesn't do encryption.Paul McMillan
2011-10-17Remove more relative imports (I will kill them all).Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-08Fixed #10573 -- Corrected autofocus problem in admin when the first widget di...Russell Keith-Magee
2010-11-28Fixes #10427 -- Abstract the value generation of a BoundFieldChris Beaven
2010-10-01Fixed #7048 -- Added ClearableFileInput widget to clear file fields. Thanks f...Jannis Leidel
2010-09-26Fixed #13827 -- Cleaned up a few unnecessary function calls.Jannis Leidel
2010-08-14Fixed #13679, #13231, #7287 -- Ensured that models that have ForeignKeys/Many...Russell Keith-Magee
2010-08-07Fixed #8426 - 'helptext' CSS class - hopefully for real this time.Luke Plant
2010-08-06Fixed #12746 -- Updated sorting calls to use 'key' instead of 'cmp'. This wil...Russell Keith-Magee
2010-05-21Fixed #13560 -- Fixed localization of widgets.Jannis Leidel
2010-03-27Fixed #13032 - Added localize parameter to form fields to be able to selecti...Jannis Leidel
2010-03-16Fixed #12434: Made pretty_name handle empty string and None as input. Thanks ...Karen Tracey
2010-03-06Fixed #12960. The return value of ModelForm.clean() is now applied to the mod...Joseph Kocherhans
2010-01-21Fixed #12596. Calling super from a ModelForm's clean method is once again opt...Joseph Kocherhans
2010-01-09Fixed #12466 - Set HTML class attributes for each field separately. Thanks fo...Jannis Leidel
2010-01-05Merged soc2009/model-validation to trunk. Thanks, Honza!Joseph Kocherhans
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss