summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2020-11-02Updated {% static %} tag examples in docs to use single quotes where ↵Nikita Sobolev
appropriate.
2020-10-22Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior.Carlton Gibson
2020-10-21Fixed #32046 -- Added CreateCollation/RemoveCollation operations for PostgreSQL.Tom Carrick
2020-10-20Fixed outdated notes in SchemaEditor docs.Mariusz Felisiak
2020-10-19Fixed typo in docs/ref/checks.txt.Mariusz Felisiak
2020-10-17Fixed #32110 -- Doc'd and tested enumerations for ChoiceField.choices.Claude Paroz
2020-10-13Fixed #20601 -- Allowed forcing format with thousand separators in ↵Jacob Walls
floatformat filter. Thanks Claude Paroz and Nick Pope for reviews.
2020-10-08Fixed #29356 -- Clarified docs for QueryDict.getlist() default.Paul Grau
2020-10-08Fixed #23681, Fixed #27445 -- Doc'd setting choices for NullBooleanField ↵Jacob Walls
widgets. Thanks to David Smith for investigation and review. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-10-07Fixed #32065 -- Restored leading dot to CSRF_COOKIE_DOMAIN examples.Carlton Gibson
Partially reverts afd375fc343baa46e61036087bc43b3d096bb0ca. Thanks to Tim Graham for review.
2020-10-07Fixed #32002 -- Added headers parameter to HttpResponse and subclasses.Tom Carrick
2020-10-02Refs #31777 -- Doc'd Char/TextField.db_collation parameter in MySQL notes.Mariusz Felisiak
2020-10-02Fixed #32060 -- Added Random database function.Nick Pope
2020-10-01Fixed #32041 -- Doc'd how to modify served files' content types on Windows.Peter Marheine
2020-10-01Fixed #32057 -- Doc'd HttpResponse.get()/items().MAHANTH-wq
2020-09-30Fixed #30422 -- Made TemporaryFileUploadHandler handle interrupted uploads.aryan
This patch allows upload handlers to handle interrupted uploads. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-09-25Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith
2020-09-25Fixed empty values of forms.JSONField and forms.UUIDField in docs.David Smith
2020-09-25Refs #32038 -- Added note to ModelAdmin.list_filter docs that ↵Mariusz Felisiak
GenericForeignKeys are not supported.
2020-09-25Fixed typo and indentation in docs/ref/forms/fields.txt.Mariusz Felisiak
2020-09-23Fixed example of QuerySet.explain() with flags in docs.Paweł Zarębski
2020-09-23Fixed #32012 -- Made test database creation sync apps models when migrations ↵Mariusz Felisiak
are disabled. Thanks Jaap Roes for the report.
2020-09-21Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick
Thanks Simon Charette and Mariusz Felisiak for reviews.
2020-09-21Refs #32013 -- Added backward incompatibility note about ModelChoiceIterator ↵Mariusz Felisiak
changes.
2020-09-17Refs #28939 -- Doc’d Prefetch behavior with multiple DBs.Mike Lissner
2020-09-16Fixed #29887 -- Added a cache backend for pymemcache.Nick Pope
2020-09-14Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick
2020-09-13Corrected exception types in QuerySet docs.Mariusz Felisiak
2020-09-11Fixed #31943 -- Fixed recreating QuerySet.values()/values_list() when using ↵Hasan Ramezani
a pickled Query.
2020-09-09Mentioned ASGI handler in SuspiciousOperation docs.Mariusz Felisiak
2020-09-09Fixed #31962 -- Made SessionMiddleware raise SessionInterrupted when session ↵Hasan Ramezani
destroyed while request is processing.
2020-09-07Fixed #31791 -- Made technical 404 debug page display the tried URL patterns ↵Jon Dufresne
for Http404.
2020-09-05Fixed #31982 -- Made HttpResponse.set_cookie() cast max_age argument to an ↵Hasan Ramezani
integer.
2020-09-02Refs #11390 -- Clarified dual-calling of ChoiceField.choices callable.Carlton Gibson
2020-09-02Fixed #31948 -- Added tzinfo parameter to TruncDate() and TruncTime().Joe Jackson
2020-08-31Fixed #31934 -- Added note about the default of SameSite cookie flag in ↵Hasan Ramezani
modern browsers.
2020-08-26Fixed #31918 -- Allowed QuerySet.in_bulk() to fetch on a single distinct field.Kaustubh
2020-08-24Fixed #31877 -- Reverted "Fixed #19878 -- Deprecated TemplateView passing ↵Mariusz Felisiak
URL kwargs into context." This reverts commit 4ed534758cb6a11df9f49baddecca5a6cdda9311.
2020-08-21Fixed #31906 -- Fixed typo in docs/ref/forms/fields.txt.Ninad Kulkarni
2020-08-20Fixed #31909 -- Fixed typo in docs/ref/contrib/admin/index.txt.Enderson Menezes
2020-08-18Refs #9061 -- Allowed GenericInlineFormSet to disable deleting extra forms.Mariusz Felisiak
Follow up to 162765d6c3182e36095d29543e21b44b908625fc.
2020-08-18Refs #20347 -- Allowed customizing the maximum number of instantiated forms ↵Mariusz Felisiak
in generic_inlineformset_factory(). Follow up to 433dd737f94b09043f64b873b0ac067b3f97364b.
2020-08-18Refs #17642 -- Doc'd min_num and validate_min arguments in ↵Mariusz Felisiak
modelformset_factory() docs. Changed arguments ordering to match the modelformset_factory() signature.
2020-08-18Fixed typo in docs/ref/django-admin.txt.Mariusz Felisiak
2020-08-13Refs #31811 -- Added optional timing outputs to the test runner.Ahmad A. Hussein
2020-08-11Fixed #21181 -- Added Collate database function.Tom Carrick
Thanks Simon Charette for reviews.
2020-08-07Removed unnecessary sentence in QuerySet docs.Adam Alton
2020-08-07Fixed typo in docs/ref/contrib/postgres/fields.txt.Thomas
2020-08-06Fixed #25513 -- Extracted admin pagination to Paginator.get_elided_page_range().Nick Pope
2020-08-05Fixed #29336 -- Doc'd circular template inheritanceDavid Smith