summaryrefslogtreecommitdiff
path: root/django/contrib/admin/options.py
AgeCommit message (Expand)Author
2018-06-18[2.1.x] Fixed #29419 -- Allowed permissioning of admin actions.Carlton Gibson
2018-06-15[2.1.x] Fixed #29487 -- Accounted for object level permissions when calculati...Paulo
2018-06-15[2.1.x] Fixed #23869 -- Made ModelAdmin.get_deleted_objects() use has_delete_...Henk Kahlfuß
2018-06-13[2.1.x] Refs #29419, #8936 -- Removed change permission requirement for admin...Carlton Gibson
2018-06-06[2.1.x] Refs #28462 -- Fixed 'invalid escape sequence' warning on Python 3.6+.Tim Graham
2018-06-01[2.1.x] Fixed #28462 -- Decreased memory usage with ModelAdmin.list_editable.Adam Donaghy
2018-05-27[2.1.x] Fixed #29417 -- Corrected two admin page titles for view-only users.Ramiro Morales
2018-05-16Fixed #8936 -- Added a view permission and a read-only admin.olivierdalang
2018-04-04Fixed #27991 -- Added obj arg to InlineModelAdmin.has_add_permission().Jon Dufresne
2018-02-24Fixed #17962 -- Added ModelAdmin.get_deleted_objects().Becky Smith
2018-02-24Removed using argument from admin's get_deleted_objects().Tim Graham
2018-02-21Removed unused opts argument from admin's get_deleted_objects().Tim Graham
2018-02-07Fixed #25790 -- Allowed disable column sorting in the admin changelist.Alexander Gaevsky
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-05Fixed #15522 -- Added ModelAdmin.delete_queryset() to customize "delete selec...Vasilis Aggelou
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-06Simplified BaseModelAdmin.lookup_allowed() a bit.Sergey Fedoseev
2017-12-01Fixed #28871 -- Fixed initialization of autocomplete widgets in "Add another"...Tim Graham
2017-11-18Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.Krzysztof Nazarewski
2017-11-07Fixed #28585 -- Calculated admin's change form multipart context variable fro...Claude Paroz
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
2017-09-18Fixed #14370 -- Allowed using a Select2 widget for ForeignKey and ManyToManyF...Johannes Hoppe
2017-09-13Removed unnecessary parens in various code.Mariusz Felisiak
2017-09-13Merged isinstance() calls.Mariusz Felisiak
2017-08-31Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham
2017-08-23Used OrderedDict.fromkeys() to initialize OrderedDict with None values.Sergey Fedoseev
2017-08-22Fixed #28496 -- Added ModelAdmin.get_changelist_instance().Simon Meers
2017-07-20Fixed #28377 -- Made combining form Media retain relative asset order.Johannes Hoppe
2017-06-14Fixed #27998 -- Made ManyToManyField changes logged in admin's object history.Lincoln Smith
2017-06-07Factored shared Inline/ModelAdmin.get_fields() logic into BaseModelAdmin.Tim Graham
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
2017-06-05Fixed #28262 -- Fixed incorrect DisallowedModelAdminLookup when a nested reve...Paulo
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-07Fixed #27356 -- Fixed ModelAdmin.lookup_allowed() for some nested relations.Anton Samarchyan
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-01-31Used model_ngettext in two more placesClaude Paroz
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python equi...Claude Paroz
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-04Refs #2856 -- Removed redundant escaping in admin's "Perhaps it was deleted?"...Tim Graham