summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/admin
AgeCommit message (Collapse)Author
2018-07-18[2.1.x] Added doc links for django.utils.html.escape().Claude Paroz
Backport of 6e78e1054933c36a2e0fdf998db780c88bdef4a9 from master
2018-06-18[2.1.x] Fixed #29502 -- Allowed users with the view permission to use ↵Carlton Gibson
autocomplete_fields. Backport of 5b733171813f8ddc7af84abe79f2646204b9c6ca from master
2018-06-18[2.1.x] Fixed #29419 -- Allowed permissioning of admin actions.Carlton Gibson
Backport of 958c7b301ead79974db8edd5b9c6588a10a28ae7 from master
2018-06-13[2.1.x] Refs #29419, #8936 -- Removed change permission requirement for ↵Carlton Gibson
admin actions. Partially reverted 825f0beda804e48e9197fcf3b0d909f9f548aa47. Backport of b30f9b131c9489b9d9f21c311ecb46d0aea91381 from master
2018-05-16Fixed #8936 -- Added a view permission and a read-only admin.olivierdalang
Co-authored-by: Petr Dlouhy <petr.dlouhy@email.cz> Co-authored-by: Olivier Dalang <olivier.dalang@gmail.com>
2018-05-13Fixed #29401 -- Updated admin's jQuery to 3.3.1.T N
2018-05-12Alphabetized imports in various docs.Mariusz Felisiak
Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f.
2018-05-02Fixed #29351 -- Doc'd that ModelAdmin.prepopulated_fields removes stop words.Kelly Hogan
2018-04-04Fixed #27991 -- Added obj arg to InlineModelAdmin.has_add_permission().Jon Dufresne
Thanks Vladimir Ivanov for the initial patch.
2018-04-04Documented InlineModelAdmin.has_(add/change/delete)_permission().Jon Dufresne
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
Thanks Lynn Cyrin for contributing to the patch, and Nick Pope for review.
2018-03-01Refs #27728 -- Made cosmetic edits to admin template tag template overriding.Tim Graham
2018-02-28Fixed #27728 -- Allowed overriding admin templatetags templates.Raffaele Salmaso
2018-02-24Fixed #17962 -- Added ModelAdmin.get_deleted_objects().Becky Smith
2018-02-22Added backticks around obj argument in admin docs.Jon Dufresne
2018-02-15Fixed #27810 -- Allowed query expressions in admin_order_field.Andreas Pelme
2018-02-07Fixed #25790 -- Allowed disable column sorting in the admin changelist.Alexander Gaevsky
Thanks Ramiro Morales for completing the patch.
2018-02-03Fixed #8500 -- Allowed overriding the default admin site instance.Raffaele Salmaso
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial ↵Дилян Палаузов
continue statements.
2018-01-05Fixed #15522 -- Added ModelAdmin.delete_queryset() to customize "delete ↵Vasilis Aggelou
selected objects" deletion.
2017-12-26Fixed #28956 -- Updated admin's jQuery to 3.2.1.Tim Graham
2017-12-07Fixed typo in docs/ref/contrib/admin/index.txt.Sam Collins
2017-11-18Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.Krzysztof Nazarewski
Thanks Krzysztof Nazarewski for the initial patch.
2017-11-09Fixed #28777 -- Clarified the docs for admin.register's args.Tim Graham
2017-10-28Fixed #28205 -- Doc'd that ModelAdmin.prepopulated_fields only works on add ↵Botond Beres
forms.
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-09-19Refs #14370 -- Fixed typo in ModelAdmin.autocomplete_fields docs.Johannes Hoppe
2017-09-18Fixed #14370 -- Allowed using a Select2 widget for ForeignKey and ↵Johannes Hoppe
ManyToManyField in the admin. Thanks Florian Apolloner and Tim Graham for review and contributing to the patch.
2017-09-02Fixed #17985 -- Documented ModelAdmin.lookup_allowed().Simon Meers
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #25135 -- Removed support for the contrib.admin allow_tags attribute.Tim Graham
Per deprecation timeline.
2017-01-11Fixed typos in docs/ref/contrib/admin/index.txtTim Graham
2016-12-19Fixed #27377 -- Clarified that prepopulated_fields doesn't work with ↵Henry Dang
OneToOneField.
2016-12-15Doc'd how ModelAdmin.list_display uses short_description.Javier Rojas
2016-12-14Fixed #27313 -- Allowed overriding admin popup response template.Michael Scott
2016-12-08Fixed #27566 -- Clarified overriding ModelAdmin.save_model()/delete_model() ↵Doug Harris
docs.
2016-11-15Replaced "django" with "Django" in spelling_wordlist.akki
2016-10-17Fixed ModelAdmin.get_max_num() example if obj is None.Riccardo Magliocchetti
2016-10-07Fixed #24941 -- Added ModelAdmin.get_exclude().Zach Borboa
Thanks Ola Sitarska for the initial patch.
2016-10-04Fixed typos in docs/ref/contrib/admin/javascript.txt.aruseni
2016-10-04Fixed typo in docs/ref/contrib/admin/javascript.txt.aruseni
2016-09-27Fixed #27076 -- Documented contrib.admin.sites.AdminSite.register().Austin Simmons
2016-09-26Fixed #27276 -- Doc'd how to reverse admin's login view.Jonatas CD
2016-09-02Fixed #27099 -- Documented list filter's has_output() method.Jeff Willette
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.