summaryrefslogtreecommitdiff
path: root/django/forms
Commit message (Expand)AuthorAgeFilesLines
* Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham2016-05-111-15/+1
* Refs #15667 -- Removed choices argument from some RendererMixin methods.Tim Graham2016-04-281-7/+6
* Fixed #21332, #26538 -- Fixed inconsistent and duplicate form fields on inlin...David Sanders2016-04-261-7/+7
* Fixed #26534 -- Fixed boolean form fields has_changed() with hidden input.David Sanders2016-04-241-14/+3
* Fixed #26533 -- Renamed Widget._format_value() to format_value().Tim Graham2016-04-231-4/+13
* Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for for...Loïc Bistuer2016-04-221-1/+3
* Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne2016-04-214-4/+17
* Fixed #26516 -- Added minlength attribute when forms.CharField.min_length is ...Jon Dufresne2016-04-191-1/+4
* Refs #26502 -- Added choices to Form.__getitem__() KeyError message.Tim Graham2016-04-141-1/+6
* Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha2016-04-131-6/+5
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-084-46/+51
* Fixed W503 flake8 warnings.Tim Graham2016-04-041-7/+8
* Fixed #25532 -- Properly redisplayed JSONField form input valuesClaude Paroz2016-04-011-4/+5
* Fixed #25987 -- Made inline formset validation respect unique_together with a...Simon Charette2016-03-261-3/+9
* Removed unnecessary type creation in modelforset_factory.Simon Charette2016-03-251-2/+0
* Refs #24227 -- Replaced M2M isinstance checks by field.many_to_manyClaude Paroz2016-03-191-3/+1
* Fixed #24974 -- Fixed inheritance of formfield_callback for modelform_factory...Yoong Kang Lim2016-02-261-2/+9
* Fixed #26267 -- Fixed BoundField to reallow slices of subwidgets.Jon Dufresne2016-02-241-1/+1
* Fixed #26238 -- Raised explicit error for non-editable field in ModelFormClaude Paroz2016-02-211-0/+6
* Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, requir...haxoza2016-02-191-5/+5
* Fixed #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2Berker Peksag2016-02-151-1/+1
* Fixed #25731 -- Removed unused choices kwarg for Select.render()jpic2016-02-021-9/+9
* Fixed #26129 -- Made invalid forms display initial values of disabled fields.Tim Graham2016-01-281-0/+2
* Refs #25731 -- Removed unused MultipleHiddenInput choicesjpic2016-01-251-6/+1
* Refs #26104 -- Replaced unnecessary force_str() with force_text().Tim Graham2016-01-231-1/+1
* Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.Alexander Gaevsky2016-01-221-1/+1
* Fixed #25942 -- Fixed TypedChoiceField.has_changed with nullable fieldClaude Paroz2015-12-171-6/+5
* Fixed #21221 -- Made form Media and static template tag use staticfiles if in...Johannes Hoppe2015-12-101-5/+8
* Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.Marti Raudsepp2015-11-091-2/+4
* Fixed #25567 -- Removed obsolete MEDIA_URL fallback in Media.absolute_pathClaude Paroz2015-10-191-5/+1
* Fixed #25496 -- Made ModelChoiceField respect prefetch_related().Tim Graham2015-10-051-1/+3
* Refs #25294 -- Added BoundField import for backwards compatibility.Moritz Sichert2015-09-241-0/+2
* Refs #23162 -- Removed forms.Field._has_changed() method.Tim Graham2015-09-231-10/+1
* Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham2015-09-231-11/+0
* Fixed #25410 -- Fixed empty ClearableFileInput crash on Python 2.Tim Graham2015-09-231-8/+0
* Fixed #25431 -- Readded inline foreign keys to modelformset instancesClaude Paroz2015-09-211-5/+5
* Fixed #24636 -- Added model field validation for decimal places and max digits.Iulia Chiriac2015-09-181-44/+1
* Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert2015-09-165-226/+241
* Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert2015-09-162-1/+9
* Fixed typo in django/forms/utils.py docstring.Kholid Fuadi2015-09-141-1/+1
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-2/+6
* Fixed #24706 -- Made ModelForm._post_clean() handle a ValidationError raised ...Keryn Knight2015-09-071-3/+13
* Removed BaseForm._raw_value().Tim Graham2015-08-211-9/+0
* Removed forms.models.save_instance() function.Tim Graham2015-08-071-58/+42
* Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ...Tim Graham2015-08-071-1/+1
* Used @cached_property for BaseForm.changed_data.Curtis Maloney2015-08-041-24/+23
* Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson2015-07-171-0/+6
* Fixed #25078 -- Added support for disabled form fieldsClaude Paroz2015-07-162-2/+10
* Fixed #25124 -- Eased customization of SelectDateWidget subwidget.George Brocklehurst2015-07-151-1/+2
* Fixed #25085 -- Overrode Select widget's __deepcopy__()Eric Carrillo2015-07-141-0/+7