| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-10-27 | [4.0.x] Refs #33182 -- Adjusted custom admin theming example to use correct ↵ | Carlton Gibson | |
| template block. Backport of a754b82dac511475b6276039471ccd17cc64aeb8 from main | |||
| 2021-09-20 | Fixed #32504 -- Updated admin's jQuery to 3.6.0. | Mariusz Felisiak | |
| 2021-09-08 | Fixed #32219 -- Made InlineModelAdmin.verbose_name_plural fallback to its ↵ | Siburg | |
| verbose_name. | |||
| 2021-07-28 | Fixed typo in docs/ref/contrib/admin/index.txt. | Pēteris Caune | |
| 2021-07-23 | Fixed #32950 -- Removed myproject from imports in admin docs where appropriate. | Abhyudai | |
| 2021-06-03 | Fixed typos in docs. | Jacob Walls | |
| 2021-05-26 | Fixed #32543 -- Added search_help_text to ModelAdmin. | Hasan Ramezani | |
| 2021-05-19 | Fixed typo in docs/ref/contrib/admin/index.txt. | David Sanders | |
| 2021-05-13 | Fixed #32031 -- Added model class for each model to AdminSite.each_context(). | Raffaele Salmaso | |
| 2021-04-27 | Refs #32682 -- Renamed use_distinct variable to may_have_duplicates. | Mariusz Felisiak | |
| QuerySet.distinct() is not the only way to avoid duplicate, it's also not preferred. | |||
| 2021-02-15 | Fixed #26607 -- Allowed customizing formset kwargs with ↵ | manav014 | |
| ModelAdmin.get_formset_kwargs(). Thanks Nick Pope for reviews. | |||
| 2021-02-11 | Fixed #32421 -- Made admindocs ModelDetailView show model cached properties. | Ramon Saraiva | |
| 2021-01-20 | Fixed #32371 -- Doc'd jquery.init.js dependency for admin widgets. | Matthias Kestenholz | |
| 2021-01-14 | Removed versionadded/changed annotations for 3.1. | Mariusz Felisiak | |
| 2021-01-14 | Fixed #31259 -- Added admin dark theme. | mimi89999 | |
| 2021-01-13 | Fixed #16117 -- Added decorators for admin action and display functions. | Nick Pope | |
| Refs #25134, #32099. | |||
| 2021-01-12 | Fixed #31747 -- Fixed model enumeration via admin URLs. | Jon Dufresne | |
| Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> | |||
| 2021-01-07 | Fixed #32018 -- Extracted admin colors into CSS variables. | Matthias Kestenholz | |
| Defined all colors used in the admin CSS as variables. Implemented the following standardizations and accessibility improvements while at it: - Improved the contrast of text to not use ratios of less than 3:1 anymore. - Most hover states already used desaturated and darkened colors. Changed object tools to follow the same rule instead of showing the primary color on hover. Various places used similar colors; those have been merged with the goal of reducing the count of CSS variables. Contrasts have been improved in a few places. - Many borders used slightly different colors (e.g. #eaeaea vs. #eee) - Help texts used #999, this has been changed to --body-quiet-color (#666) which has a better contrast. Introduced fast color transitions on links and buttons. | |||
| 2020-12-16 | Fixed #32273 -- Doc'd AdminSite.unregister(). | Hasan Ramezani | |
| 2020-12-11 | Corrected docs regarding attributes required for logging in to the admin. | Jan Pieter Waagmeester | |
| Regression in 939dcff24f8e97d114595b102fb12348da482135. | |||
| 2020-11-30 | Fixed #32232 -- Fixed typo in docs/ref/contrib/admin/actions.txt. | Hasan Ramezani | |
| 2020-11-14 | Doc'd that admin site booleans are tri-state. | Nick Pope | |
| 2020-11-14 | Improved examples in ModelAdmin.list_display docs. | Nick Pope | |
| 2020-11-13 | Changed docs and a code comment to use gender-neutral pronouns. | Nick Pope | |
| Follow up to e1b77238171cc96f4451a06fb4682e2378896238. | |||
| 2020-09-25 | Refs #32038 -- Added note to ModelAdmin.list_filter docs that ↵ | Mariusz Felisiak | |
| GenericForeignKeys are not supported. | |||
| 2020-08-20 | Fixed #31909 -- Fixed typo in docs/ref/contrib/admin/index.txt. | Enderson Menezes | |
| 2020-07-29 | Corrected admin.register() signature in docs. | Andrzej Bartosiński | |
| 2020-07-13 | Fixed #21528 -- Added note about filtering form field's queryset based on ↵ | Caio Ariede | |
| instance to admin docs. | |||
| 2020-07-02 | Refs #6903 -- Adjusted ModelAdmin.preserve_filters docs. | Carlton Gibson | |
| 2020-06-18 | Fixed #6933 -- Added support for searching against quoted phrases in ↵ | Alix | |
| ModelAdmin.search_fields. | |||
| 2020-05-27 | Fixed #11157 -- Stopped removing stop words in admin's prepopulated_fields. | Scott Cranfill | |
| Co-Authored-By: Andy Chosak <andy@chosak.org> | |||
| 2020-05-14 | Refs #31034 -- Documented admin requires ↵ | Jon Dufresne | |
| django.template.context_processors.request. Required since d24ba1be7a53a113d19e2860c03aff9922efec24. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> | |||
| 2020-05-13 | Fixed numbered list in admin overview docs. | Jon Dufresne | |
| 2020-05-13 | Removed versionadded/changed annotations for 3.0. | Mariusz Felisiak | |
| 2020-05-11 | Fixed #31034 -- Added a navigation sidebar to the admin. | Tom Carrick | |
| Co-authored-by: elky <elky@users.noreply.github.com> Co-authored-by: Goetz <goetz.buerkle@gmail.com> | |||
| 2020-05-05 | Fixed #31485 -- Updated admin's jQuery to 3.5.1. | Mariusz Felisiak | |
| 2020-04-16 | Improved message example in admin actions documentation. | Nick Pope | |
| Avoid partial string construction and make use of ``ngettext`` to show example of how to handle plural variants with translations. Also make use of ``messages.SUCCESS`` to highlight customizing the style of the message - in this case it better fits what the message is conveying. | |||
| 2020-03-03 | Documented default value of InlineModelAdmin.extra. | Adam Johnson | |
| 2020-01-29 | Refs #25778 -- Updated some links to HTTPS and new locations. | Mariusz Felisiak | |
| 2020-01-03 | Fixed #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> | |||
| 2019-12-18 | Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags. | Mike Hansen | |
| 2019-12-11 | Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵ | Jon Dufresne | |
| <script> tags. | |||
| 2019-11-06 | Fixed #15742 -- Fixed an example of collecting selected objects in ↵ | Daniel Fairhead | |
| ModelAdmin.actions docs. The queryset argument is already filtered, and request.POST doesn't contain all selected objects when "Select All" is used. | |||
| 2019-10-07 | Refs #10348 -- Doc'd that ModelAdmin ignores list_select_related when ↵ | Tamer Sherif | |
| QuerySet.select_related() was already called. | |||
| 2019-09-10 | Removed versionadded/changed annotations for 2.2. | Mariusz Felisiak | |
| 2019-09-06 | Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵ | Tobias Kunze | |
| involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review. | |||
| 2019-08-23 | Fixed #30507 -- Updated admin's jQuery to 3.4.1. | Dulmandakh | |
| 2019-05-31 | Fixed #28831 -- Doc'd that InlineModelAdmin methods' obj argument is the ↵ | parth | |
| parent object. | |||
| 2019-05-15 | Changed tuple choices to list in docs. | Jon Dufresne | |
| 2019-04-23 | Fixed #30365 -- Fixed syntax highlighting in SQL examples. | Daniel Musketa | |
| Sphinx interprets some "%[a-z]" in SQL statements as a "Literal.String.Interpol" which leads to incorrect highlighting. | |||
