summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2016-08-10Fixed #26844 -- Made formset's validate_min validation ignore empty forms.Andrew Nester
2016-08-09Fixed #26905 -- Allowed using MultiValueDict-like objects as form data.Marcin Nowak
2016-08-08Fixed #27002 -- Prevented double query when rendering ModelChoiceField.Alex Hill
2016-08-06Fixed #27015 -- Prevented HTML-invalid minlength/maxlength on hidden inputsClaude Paroz
2016-08-04Fixed #26928 -- Changed forms' checked attribute to HTML5 boolean style.Jon Dufresne
2016-08-03Fixed #27001 -- Fixed a query count regression in ModelChoiceField with Radio...Alex Hill
2016-08-01Fixed #26927 -- Made subwidget iteration pass disabled and required attributes.Jon Dufresne
2016-07-30Fixed #26970 -- Fixed crash with disabled ModelMultipleChoiceField.Tim Graham
2016-07-27Fixed #26917 -- Fixed crash in disabled ModelChoiceFields.Tim Graham
2016-07-14Fixed #26821 -- Fixed forms.Email/URLField crash on None value.Priy
2016-07-14Fixed #26890 -- Fixed IntegerField crash on Unicode numbers.Jon Dufresne
2016-06-18Refs #15667 -- Fixed crash when indexing RadioFieldRenderer with ModelChoiceI...Tim Graham
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
2016-06-09Fixed #26734 -- Made iterator class configurable on ModelChoiceField.David Sanders
2016-05-11Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham
2016-04-28Refs #15667 -- Removed choices argument from some RendererMixin methods.Tim Graham
2016-04-26Fixed #21332, #26538 -- Fixed inconsistent and duplicate form fields on inlin...David Sanders
2016-04-24Fixed #26534 -- Fixed boolean form fields has_changed() with hidden input.David Sanders
2016-04-23Fixed #26533 -- Renamed Widget._format_value() to format_value().Tim Graham
2016-04-22Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for for...Loïc Bistuer
2016-04-21Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne
2016-04-19Fixed #26516 -- Added minlength attribute when forms.CharField.min_length is ...Jon Dufresne
2016-04-14Refs #26502 -- Added choices to Form.__getitem__() KeyError message.Tim Graham
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-04-01Fixed #25532 -- Properly redisplayed JSONField form input valuesClaude Paroz
2016-03-26Fixed #25987 -- Made inline formset validation respect unique_together with a...Simon Charette
2016-03-25Removed unnecessary type creation in modelforset_factory.Simon Charette
2016-03-19Refs #24227 -- Replaced M2M isinstance checks by field.many_to_manyClaude Paroz
2016-02-26Fixed #24974 -- Fixed inheritance of formfield_callback for modelform_factory...Yoong Kang Lim
2016-02-24Fixed #26267 -- Fixed BoundField to reallow slices of subwidgets.Jon Dufresne
2016-02-21Fixed #26238 -- Raised explicit error for non-editable field in ModelFormClaude Paroz
2016-02-19Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, requir...haxoza
2016-02-15Fixed #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2Berker Peksag
2016-02-02Fixed #25731 -- Removed unused choices kwarg for Select.render()jpic
2016-01-28Fixed #26129 -- Made invalid forms display initial values of disabled fields.Tim Graham
2016-01-25Refs #25731 -- Removed unused MultipleHiddenInput choicesjpic
2016-01-23Refs #26104 -- Replaced unnecessary force_str() with force_text().Tim Graham
2016-01-22Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.Alexander Gaevsky
2015-12-17Fixed #25942 -- Fixed TypedChoiceField.has_changed with nullable fieldClaude Paroz
2015-12-10Fixed #21221 -- Made form Media and static template tag use staticfiles if in...Johannes Hoppe
2015-11-09Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.Marti Raudsepp
2015-10-19Fixed #25567 -- Removed obsolete MEDIA_URL fallback in Media.absolute_pathClaude Paroz
2015-10-05Fixed #25496 -- Made ModelChoiceField respect prefetch_related().Tim Graham
2015-09-24Refs #25294 -- Added BoundField import for backwards compatibility.Moritz Sichert
2015-09-23Refs #23162 -- Removed forms.Field._has_changed() method.Tim Graham
2015-09-23Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham
2015-09-23Fixed #25410 -- Fixed empty ClearableFileInput crash on Python 2.Tim Graham
2015-09-21Fixed #25431 -- Readded inline foreign keys to modelformset instancesClaude Paroz