summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2020-01-22Clarified AppConfig.ready() docs example.Adam Johnson
2020-01-17Added missing backtick in instances docs.Claude Paroz
2020-01-17Refs #30752 -- Doc'd error reporting related optional request attributes.Carlton Gibson
2020-01-16Fixed #30752 -- Allowed using ExceptionReporter subclasses in error reports.Pavel Lysak
2020-01-15Fixed #31124 -- Fixed setting of get_FOO_display() when overriding inherited ↵Carlton Gibson
choices. Regression in 2d38eb0ab9f78d68c083a5b78b1eca39027b279a
2020-01-13Fixed typo in docs/ref/django-admin.txt.Daniel Hahler
2020-01-10Fixed #30980 -- Improved error message when checking uniqueness of admin ↵Adam Donaghy
actions' __name__. Thanks Keshav Kumar for the initial patch.
2020-01-08Fixed #31118 -- Made FileInput to avoid the required attribute when initial ↵Shubham singh
data exists.
2020-01-07Fixed #15982 -- Added DATE_INPUT_FORMATS to forms.DateTimeField default ↵Claude Paroz
input formats.
2020-01-06Fixed #11385 -- Made forms.DateTimeField accept ISO 8601 date inputs.Claude Paroz
Thanks José Padilla for the initial patch, and Carlton Gibson for the review.
2020-01-06Corrected notes about default date/datetime/time input formats.Claude Paroz
2020-01-03Fixed #28991 -- Added EmptyFieldListFilter class in admin.filters.Federico Jaramillo Martínez
Thanks Simon Charette and Carlton Gibson for reviews. Co-Authored-By: Jonas Haag <jonas@lophus.org> Co-Authored-By: Christophe Baldy <christophe.baldy@polyconseil.fr>
2020-01-02Fixed typo in ref/forms/widgets.txt.Mariusz Felisiak
2019-12-30Fixed #30892 -- Fixed slugify() and admin's URLify.js for "İ".Sjbrgsn
Thanks Luis Nell for the implementation idea and very detailed report. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2019-12-30Refs #29260 -- Doc'd Model.save() behavior change in Django 3.0.Simon Charette
2019-12-23Removed unnecessary code-block directives in various docs.Jon Dufresne
2019-12-23Fixed #30998 -- Added ModelChoiceIteratorValue to pass the model instance to ↵Jon Dufresne
ChoiceWidget.create_option().
2019-12-23Refs #30998 -- Doc'd ModelChoiceField/ModelMultipleChoiceField.iterator ↵Jon Dufresne
attributes and ModelChoiceIterator.
2019-12-21Fixed #31110 -- Fixed typo in docs/ref/models/expressions.txt.Taoup
2019-12-20Removed outdated information from contrib.sites docs.Garry Polley
2019-12-18Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags.Mike Hansen
2019-12-17Fixed #31086 -- Improved error message for admin model inlines with more ↵Shubham singh
than one foreign key to the same parent.
2019-12-16Fixed #31088 -- Added support for websearch searching in SearchQuery.James Turk
2019-12-12Rewrote CSRF JavaScript example without jQuery.Jon Dufresne
2019-12-12Fixed #30862 -- Allowed setting SameSite cookies flags to 'none'.Osaetin Daniel
Thanks Florian Apolloner and Carlton Gibson for reviews.
2019-12-12Doc'd HttpResponse.set_cookie()'s secure argument.Osaetin Daniel
2019-12-12Refs #6657 -- Corrected HttpResponse.set_cookie()/set_signed_cookie() ↵Osaetin Daniel
signatures in docs.
2019-12-12Fixed typos in 3.0 release notes and docs/ref/request-response.txt.Hasan Ramezani
2019-12-11Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵Jon Dufresne
<script> tags.
2019-12-09Fixed #27430 -- Added -b/--buffer option to DiscoverRunner.Baptiste Mispelon
2019-12-06Fixed #23433 -- Deprecated django-admin.py entry point in favor of django-admin.Jon Dufresne
Unify on the entry point created by setuptools entry_points feature.
2019-12-05Fixed #31039 -- Added support for contained_by lookup with AutoFields, ↵Hasan Ramezani
SmallIntegerField, and DecimalField.
2019-12-05Fixed #31010 -- Allowed subdomains of localhost in the Host header by ↵Gordon Pendleton
default when DEBUG=True.
2019-12-05Fixed #31062 -- Doc'd asgi.py in tutorials and project templates.Mariusz Felisiak
2019-12-04Fixed #23524 -- Allowed DATABASES['TIME_ZONE'] option on PostgreSQL.Aymeric Augustin
2019-12-04Fixed #31024 -- Clarified {% firstof %} tag's handling of arguments.Uttam Kini
2019-12-03Fixed #31046 -- Allowed RelatedManager.add()/create()/set() to accept ↵Baptiste Mispelon
callable values in through_defaults.
2019-12-02Fixed #31006 -- Doc'd backslash escaping in date/time template filters.Ryan Cheley
2019-12-02Fixed #30953 -- Made select_for_update() lock queryset's model when using ↵Mariusz Felisiak
"self" with multi-table inheritance. Thanks Abhijeet Viswa for the report and initial patch.
2019-11-27Fixed #31029 -- Used more specific links to RFCs.Baptiste Mispelon
2019-11-27Fixed #30803 -- Allowed comma separators for milliseconds in ↵Farhaan Bukhsh
django.utils.dateparse functions. Co-Authored-By: Ben Wilber <benwilber@gmail.com>
2019-11-27Refs #30803 -- Allowed comma separators for decimal fractions in ↵Farhaan Bukhsh
parse_duration().
2019-11-26Improved custom MultiWidget example in docs.Adam Johnson
2019-11-25Updated link to IBM DB2 backend.Sergey Fedoseev
See https://github.com/ibmdb/python-ibmdb/pull/375
2019-11-25Doc'd SpatiaLite support of 3D geometry fields.Sergey Fedoseev
Support was added in 65129aac07022f23afa1df7ec7fad2216634cb38.
2019-11-25Refs #25388 -- Corrected value of TEST MIGRATE setting in MIGRATION_MODULES ↵Jon Dufresne
docs.
2019-11-25Fixed #28469 -- Doc'd how to create a custom HttpResponse subclass.Baptiste Mispelon
2019-11-22Fixed #30996 -- Added AsWKB and AsWKT GIS functions.Sergey Fedoseev
2019-11-21Fixed #30484 -- Added conditional expressions support to CheckConstraint.Simon Charette
2019-11-20Fixed #25388 -- Added an option to allow disabling of migrations during test ↵Jon Dufresne
database creation.