index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
model_forms
/
models.py
Age
Commit message (
Expand
)
Author
2020-10-27
Fixed #1891, Fixed #11707 -- Prevented duplicates with limit_choices_to on mu...
alvinshaita
2020-09-25
Refs #28009 -- Added empty_value tests for CharField subclasses.
David Smith
2020-06-25
Fixed #31596 -- Changed ForeignKey.validate() to use the base manager.
Jon Dufresne
2020-02-05
Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...
Hasan Ramezani
2018-12-27
Followed style guide for model attribute ordering.
Matt Wiens
2018-12-10
Moved choices inside of test models per coding style.
Manan
2018-02-28
Eliminated the need to modify a model forms test when new test files are added.
Tim Graham
2017-06-01
Fixed #28242 -- Moved ImageField file extension validation to the form field.
Manatsawin Hanmongkolchai
2017-02-28
Removed obsolete references to form_for_instance().
Tim Graham
2017-02-23
Refs #23919 -- Used yield from.
Vytis Banaitis
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-20
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
Tim Graham
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2017-01-17
Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.
Tim Graham
2016-09-22
Fixed #27186 -- Fixed model form default fallback for MultiWidget, FileInput,...
Tim Graham
2016-09-17
Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.
Tim Graham
2016-09-09
Refs #25415 -- Fixed invalid models in the test suite.
Adam Chainz
2016-08-24
Fixed #27039 -- Fixed empty data fallback to model field default in model forms.
Tim Graham
2016-06-13
Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.
Jon Dufresne
2016-04-08
Fixed E128 flake8 warnings in tests/.
Tim Graham
2016-02-19
Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, requir...
haxoza
2015-09-07
Fixed #24706 -- Made ModelForm._post_clean() handle a ValidationError raised ...
Keryn Knight
2015-08-07
Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ...
Tim Graham
2015-07-27
Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...
Flavio Curella
2015-03-05
Fixed #24428 -- Fixed has_changed for fields with coercion
Claude Paroz
2015-02-23
Guaranteed removal of temporary files during tests.
Aymeric Augustin
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-12-13
Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range
Michael Hall
2014-11-21
Fixed #23865 -- documented how to assign errors to a field in Model.clean()
Alasdair Nicol
2014-07-26
Fixed #22979 -- Moved bug* tests
Tushar Bhatia
2014-06-04
Fixed #13776 -- Fixed ModelForm.is_valid() exception with non-nullable FK and...
Anubhav Joshi
2014-03-21
Removed hard-coded help_text for ManyToManyFields that use a SelectMultiple w...
Tim Graham
2014-03-21
Removed PIL compatability layer per deprecation timeline.
Tim Graham
2014-03-14
Merged model_forms_regress with model_forms tests
Claude Paroz
2014-03-14
Fixed #6103 -- Splitted tests in model_forms tests
Claude Paroz
2014-02-11
Fixed #2445 -- Allowed limit_choices_to attribute to be a callable.
Christopher Adams
2013-11-02
PEP8 cleanup
Jason Myers
2013-11-02
Fixed #21302 -- Fixed unused imports and import *.
Tim Graham
2013-10-23
Fixed #21298 -- Fixed E301 pep8 warnings
Alasdair Nicol
2013-08-06
Fixed #16986 -- Model.clean() can report errors on individual fields.
Loic Bistuer
2013-06-18
Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...
Loic Bistuer
2013-06-10
Revert "Began implementing a shared set of test models to speed up tests."
Florian Apolloner
2013-05-28
Fixed #20228 - Documented unique_for_date and exclude behavior.
Tim Graham
2013-05-23
Made fix for #9321 less buggy and more effective.
Ramiro Morales
2013-05-14
Fixed #19934 - Use of Pillow is now preferred over PIL.
Daniel Lindsley
2013-03-13
Began implementing a shared set of test models to speed up tests.
Florian Apolloner
2013-02-26
Merged regressiontests and modeltests into the test root.
Florian Apolloner