Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #1873 -- Handled multi-valued query parameters in admin changelist ↵ | sarahboyce | 2023-03-16 | 1 | -1/+10 |
| | | | | filters. | ||||
* | Refs #1873 -- Used GET.lists() in admin filters. | sarahboyce | 2023-03-16 | 1 | -0/+7 |
| | |||||
* | Fixed #33927 -- Fixed crash when displaying ArrayField with choices in admin. | David Wobrock | 2022-08-23 | 1 | -1/+9 |
| | |||||
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -62/+88 |
| | |||||
* | Fixed #13251 -- Made pre/post_delete signals dispatch the origin. | mgaligniana | 2022-01-11 | 1 | -1/+1 |
| | |||||
* | Fixed #19721 -- Allowed admin filters to customize the list separator. | Shreya Bamne | 2021-12-08 | 1 | -2/+2 |
| | |||||
* | Fixed #32996 -- Cached PathInfos on relations. | Keryn Knight | 2021-11-03 | 1 | -4/+4 |
| | | | | | | PathInfo values are ostensibly static over the lifetime of the object for which they're requested, so the data can be memoized, quickly amortising the cost over the process' duration. | ||||
* | Fixed 32956 -- Lowercased spelling of "web" and "web framework" where ↵ | David Smith | 2021-07-29 | 1 | -1/+1 |
| | | | | appropriate. | ||||
* | Refs #32682 -- Renamed lookup_needs_distinct() to lookup_spawns_duplicates(). | Mariusz Felisiak | 2021-04-29 | 1 | -3/+4 |
| | | | Follow up to 187118203197801c6cb72dc8b06b714b23b6dd3d. | ||||
* | Fixed #32080 -- Fixed displaying Unicode chars in forms.JSONField and ↵ | Qi Zhao | 2020-10-09 | 1 | -1/+2 |
| | | | | read-only JSONField values in admin. | ||||
* | Refs #30116 -- Simplified regex match group access with Match.__getitem__(). | Jon Dufresne | 2020-05-11 | 1 | -1/+1 |
| | | | | | The method has been available since Python 3.6. The shorter syntax is also marginally faster. | ||||
* | Fixed #31157 -- Fixed displaying read-only JSONField values in admin. | dbxnr | 2020-05-08 | 1 | -0/+5 |
| | |||||
* | Removed unnecessary tuple wrapping of single format string argument. | François Freitag | 2020-04-27 | 1 | -1/+1 |
| | |||||
* | Fixed #27272 -- Added an on_delete RESTRICT handler to allow cascading ↵ | Daniel Izquierdo | 2019-11-19 | 1 | -0/+2 |
| | | | | deletions while protecting direct ones. | ||||
* | Fixed #30899 -- Lazily compiled import time regular expressions. | Hasan Ramezani | 2019-10-29 | 1 | -2/+2 |
| | |||||
* | Fixed #30856 -- Combined fast-delete queries by model during cascade deletion. | Simon Charette | 2019-10-09 | 1 | -3/+3 |
| | | | | | | Reduced the number of queries required when performing cascade deletion for a model referenced multiple time by another one by performing an union of reference lookups. | ||||
* | Fixed #12952 -- Adjusted admin log change messages to use form labels ↵ | Sanyam Khurana | 2019-06-14 | 1 | -3/+23 |
| | | | | instead of field names. | ||||
* | Simplified contrib.admin.utils.unquote(). | Sergey Fedoseev | 2018-10-02 | 1 | -16/+5 |
| | |||||
* | Simplified contrib.admin.utils.quote(). | Sergey Fedoseev | 2018-10-01 | 1 | -8/+3 |
| | |||||
* | Fixed #29682 -- Fixed admin change form crash if a view-only model's form ↵ | Tim Graham | 2018-08-20 | 1 | -1/+5 |
| | | | | has an extra field. | ||||
* | Fixed #23869 -- Made ModelAdmin.get_deleted_objects() use ↵ | Henk Kahlfuß | 2018-06-15 | 1 | -7/+5 |
| | | | | has_delete_permission() for permissions checking. | ||||
* | Refs #29227 -- Simplified NullBooleanField by making it subclass BooleanField. | Nick Pope | 2018-03-20 | 1 | -1/+1 |
| | |||||
* | Fixed #29227 -- Allowed BooleanField to be null=True. | Tim Graham | 2018-03-20 | 1 | -2/+2 |
| | | | | Thanks Lynn Cyrin for contributing to the patch, and Nick Pope for review. | ||||
* | Removed using argument from admin's get_deleted_objects(). | Tim Graham | 2018-02-24 | 1 | -2/+8 |
| | |||||
* | Removed unused opts argument from admin's get_deleted_objects(). | Tim Graham | 2018-02-21 | 1 | -1/+1 |
| | | | | Unused since e12b3199d0c01694ca6b09add5e0f27cadffc8ad. | ||||
* | Fixed #28996 -- Simplified some boolean constructs and removed trivial ↵ | Дилян Палаузов | 2018-01-12 | 1 | -5/+2 |
| | | | | continue statements. | ||||
* | Fixed #28517 -- Fixed admin delete confirmation view crash when related ↵ | Paulo | 2018-01-04 | 1 | -4/+4 |
| | | | | models don't have a delete permission. | ||||
* | Fixed #28986 -- Prevented boolean values in admin list display from being ↵ | Jonas Haag | 2018-01-03 | 1 | -0/+2 |
| | | | | formatted with thousand separators. | ||||
* | Fixed #28985 -- Removed unneeded None checks before hasattr(). | Дилян Палаузов | 2018-01-03 | 1 | -2/+2 |
| | |||||
* | Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields. | Krzysztof Nazarewski | 2017-11-18 | 1 | -13/+14 |
| | | | | Thanks Krzysztof Nazarewski for the initial patch. | ||||
* | Refs #23919 -- Updated references to urllib.quote() to Python 3 location. | Ville Skyttä | 2017-10-31 | 1 | -5/+3 |
| | |||||
* | Merged isinstance() calls. | Mariusz Felisiak | 2017-09-13 | 1 | -1/+1 |
| | |||||
* | Replaced Model._get_pk_val() with pk property. | Tim Graham | 2017-06-05 | 1 | -1/+1 |
| | | | Model.pk was added after _get_pk_val() and many places weren't simplified. | ||||
* | Refs #27795 -- Replaced many force_text() with str() | Claude Paroz | 2017-04-27 | 1 | -10/+9 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Fixed #27897 -- Fixed crash with 'pk' in ModelAdmin.search_filters. | Josh Schneier | 2017-03-15 | 1 | -0/+2 |
| | |||||
* | Refs #27795 -- Removed unneeded force_text calls | Claude Paroz | 2017-03-04 | 1 | -6/+5 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | 2017-02-07 | 1 | -4/+2 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257. | Anton Samarchyan | 2017-02-04 | 1 | -11/+12 |
| | |||||
* | Refs #23919, #27778 -- Removed obsolete mentions of unicode. | Vytis Banaitis | 2017-01-26 | 1 | -4/+1 |
| | |||||
* | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | 2017-01-25 | 1 | -3/+3 |
| | |||||
* | Refs #23919 -- Removed unneeded force_str calls | Claude Paroz | 2017-01-20 | 1 | -5/+2 |
| | |||||
* | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | 2017-01-18 | 1 | -4/+4 |
| | | | | Thanks Tim Graham and Simon Charette for the reviews. | ||||
* | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | 2017-01-18 | 1 | -2/+0 |
| | |||||
* | Replaced '__' with LOOKUP_SEP constant. | Nick Pope | 2016-10-11 | 1 | -1/+1 |
| | |||||
* | Removed unused contrib.admin.utils.remove_trailing_data_field(). | Tim Graham | 2016-10-10 | 1 | -9/+0 |
| | | | | Unused since 8f30556329b64005d63b66859a74752a0b261315. | ||||
* | Fixed #27273 -- Added a construct_change_message() admin utility function. | Tim Graham | 2016-10-05 | 1 | -1/+43 |
| | |||||
* | Fixed #26524 -- Fixed crash in admin change view when displaying many to ↵ | Jon Dufresne | 2016-09-12 | 1 | -1/+1 |
| | | | | | | many forward refs. Thanks Tim Graham for the regression test. | ||||
* | Replaced smart_* by force_* calls whenever possible | Claude Paroz | 2016-09-03 | 1 | -1/+1 |
| | | | | | The smart_* version should only be used when a lazy string should keep its lazy status. | ||||
* | Fixing #26524 -- Made a foreign key id reference in ModelAdmin.list_display ↵ | krishbharadwaj | 2016-06-08 | 1 | -2/+16 |
| | | | | display the id. | ||||
* | Fixed #26582 -- Added prettier admin display for list values. | Dan Watson | 2016-05-07 | 1 | -1/+3 |
| |