| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-13 | Fixed bad model example in admin docs. | Collin Anderson | |
| 2015-01-10 | Fixed #13165 -- Added edit and delete links to admin foreign key widgets. | Simon Charette | |
| Thanks to Collin Anderson for the review and suggestions and Tim for the final review. | |||
| 2015-01-01 | Fixed typo in docs/ref/contrib/admin/index.txt. | Tim Graham | |
| 2014-12-31 | Fixed #22295 -- Replaced permission check for displaying admin user-tools | Thomas Tanner | |
| 2014-12-28 | Deprecated TEMPLATE_CONTEXT_PROCESSORS. | Aymeric Augustin | |
| 2014-12-28 | Deprecated TEMPLATE_LOADERS. | Aymeric Augustin | |
| 2014-12-28 | Deprecated current_app in TemplateResponse and render(_to_response). | Aymeric Augustin | |
| 2014-12-28 | Deprecated some arguments of django.shortcuts.render(_to_response). | Aymeric Augustin | |
| dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms. | |||
| 2014-12-26 | Documented AdminSite.has_permission(); refs #22295. | Tim Graham | |
| 2014-12-22 | Upgrade jQuery from 1.11.1 to 1.11.2 | Collin Anderson | |
| refs #23355 | |||
| 2014-12-12 | Fixed template tag braces spacing. | Kevin Marsh | |
| 2014-12-03 | Removed redundant numbered parameters from str.format(). | Berker Peksag | |
| Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}". | |||
| 2014-11-25 | Added warning about get_inline_instances() permission checking; refs #23754. | Simon Charette | |
| 2014-11-15 | Fixes a race condition in the documentation. | Peter Sagerson | |
| The example for django.contrib.admin.ModelAdmin.get_form modifies self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests.[1] This updated documentation demonstrates a safe method to override admin forms on a per-request basis. [1] https://groups.google.com/forum/#!topic/django-users/AmoUDtEefyA | |||
| 2014-10-30 | Explained why admindocs omits model methods with arguments. | Zan Anderle | |
| 2014-10-30 | Added missing imports to example from previous commit. | Tim Graham | |
| 2014-10-30 | Fixed #23575 -- Added a code example for custom AdminSite. | Berker Peksag | |
| 2014-10-29 | Added cross reference in admin docs to topic about saving objects in formsets. | P.A. SCHEMBRI | |
| 2014-10-06 | Updated links in admin docs to use :ref: | Kostochko Dmitriy | |
| per Sphinx docs: "Using ref is advised over standard reStructuredText links to sections because it works across files, when section headings are changed, and for all builders that support cross-references. | |||
| 2014-09-26 | Fixed #8408 -- Added ModelAdmin.show_full_result_count to avoid COUNT() query. | Thomas Chaumeny | |
| Thanks lidaobing for the suggestion. | |||
| 2014-08-27 | Fixed #13749 -- Added link from admin site to front-end site. | areski | |
| Thanks romankrv for the suggestion. | |||
| 2014-08-26 | Fixed #17707, #20734 -- Added examples to URL namespacing docs. | Tim Graham | |
| Thanks Daniele Procida for review. | |||
| 2014-08-24 | Fixed #23355 -- Updated admin jQuery to 1.11.1. | Tim Graham | |
| 2014-08-19 | Removed unnecessary code-block directives. | areski | |
| 2014-08-13 | Refs #23276 -- Added missing url() in some places. | Collin Anderson | |
| 2014-08-12 | Fixed #23276 -- Deprecated passing views as strings to url(). | Tim Graham | |
| 2014-08-04 | Fixed #16311 -- Added a RelatedOnlyFieldListFilter class in admin.filters. | Stanislas Guerra | |
| 2014-07-31 | Fixed #13163 -- Added ability to show change links on inline objects in admin. | Nick Sandford | |
| Thanks DrMeers for the suggestion. | |||
| 2014-07-29 | Fixed a typo in the admin documentation. | David Arcos | |
| The 'app' subpackage does not exist, should be 'app'. | |||
| 2014-07-29 | Fixed #23123 -- Don't use a bare except in ModelAdmin documentation | Baptiste Mispelon | |
| Thanks to wkschwartz for the report and to Tim for the patch. | |||
| 2014-07-22 | Fixed typo in docs/ref/contrib/admin/index.txt. | africa itcase | |
| 2014-06-13 | Fixed #6327 -- Added has_module_permission method to BaseModelAdmin | Maxime Turcotte | |
| Thanks chrj for the suggestion. | |||
| 2014-05-15 | Fixed #17642 -- Added min_num support to modelformsets, inlines, and the admin. | Anders Steinlein | |
| Thanks Stephen Burrows for work on the patch as well. Forwardport of 2914f66983a92fcae55673c517dd8d01e8c238c4 from stable/1.7.x | |||
| 2014-05-13 | Removed an unnecessary anchor in the docs. | Tim Graham | |
| 2014-05-12 | Fixed #22613 -- Added formfield_for_choice_field() to the list of methods ↵ | Tim Graham | |
| that InlineModelAdmin supports. | |||
| 2014-04-23 | Various documentation typo/spelling fixes | Marti Raudsepp | |
| Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. | |||
| 2014-04-10 | Fixed #21353 -- Noted that description is ignored for TabularInlines. | Tim Graham | |
| Thanks nofinator for the report. | |||
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-19 | Replaced reference to ModelAdmin.get_formsets() (deprecated) with ↵ | Daniel Hahler | |
| get_formsets_with_inlines(). | |||
| 2014-03-03 | Fixed #21908 -- Added example usage for ModelAdmin.get_inline_instances(). | Tim Graham | |
| Thanks matt at schinckel.net for the suggestion. | |||
| 2014-03-03 | Fixed #22135 -- Added ModelAdmin.get_changeform_initial_data(). | Greg Chapple | |
| Allows custom behavior for setting initial form data in ModelAdmin. By default, initial data is set via GET params. The new method allows this behavior to be overridden. Thanks egasimus for the suggestion. | |||
| 2014-02-28 | Fixed #21948 -- Noted TEMPLATE_LOADERS requirement when overriding admin ↵ | Alex de Landgraaf | |
| templates. Thanks django at patjack.co.uk for the suggestion. | |||
| 2014-02-28 | Fixed doc typos. | Tim Graham | |
| 2014-02-25 | Fixed docs typos. | Szczepan Cieślik | |
| 2014-02-22 | Fixed #21902 -- Documented search order for list_display. | Marcin Sokół | |
| 2014-02-14 | Fixed #21924 -- Added the ability to specify a reverse order for ↵ | Klemens Mantzos | |
| admin_order_field. Thanks Klemens Mantzos for the report and initial patch. | |||
| 2014-02-13 | Fixed #21951 -- Updated docs to use __str__ for Python 3 | Alasdair Nicol | |
| Thanks Tim Graham for the report and recommendations | |||
| 2014-01-26 | Fixed #19774 -- Deprecated the contenttypes.generic module. | Simon Charette | |
| It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
