summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/admin
AgeCommit message (Collapse)Author
2015-07-20Fixed signature of ModelAdmin.get_paginator() in docs.Ali Vakilzade
2015-07-13Fixed #25116 -- Removed long-broken admindocs bookmarkletsBen Spaulding
These were broken back in commit 64e11a6.
2015-06-27Fixed #25033 -- Added context_processors.auth to documented admin dependencies.Tim Graham
2015-06-08Fixed #21927 -- Made application and instance namespaces more distinct.Marten Kenbeek
Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
2015-06-04Fixed #24474 -- Allowed configuring the admin's empty change list value.Loek van Gent
2015-05-29Optimise the rest of the PNGs in docsCurtis
2015-05-21Cosmetic edits and minor fixes to docs/ref/contrib/admin/index.txtI am Clinton
2015-05-20Fixed typo in docs/ref/contrib/admin/index.txtlatyas(懒)
2015-05-11Fixed #24553 -- Added the list of available applications to ↵Riccardo Magliocchetti
AdminSite.each_context()
2015-05-01Updated capitalization in the word "JavaScript" for consistencyDave Hodder
2015-04-28Fixed #13008 -- Added more Cache-Control headers to never_cache() decorator.Markus Bertheau
2015-04-20Fixed #24668 -- Amended ModelAdmin.save_formset() example for #10284.Tim Graham
Thanks Carsten Fuchs.
2015-04-09Fixed typo in docs/ref/contrib/admin/index.txtandredelorme
2015-04-08Revert "Fixed #24474 -- Allowed configuring the admin's empty change list ↵Tim Graham
value." This reverts commit 72f769f494822981db6df9524b92a2d86f8e69fe. There are several test failures that need to be fixed.
2015-04-08Fixed #24474 -- Allowed configuring the admin's empty change list value.Loek van Gent
2015-03-19Fixed #24417 -- Added ModelAdmin.get_list_select_related()Loek van Gent
2015-03-13Fixed #24253 -- Documented staff_member_required decorator.Andrei Kulakov
2015-03-07Fixed typos and updated spelling wordlist.Floris den Hengst
2015-02-13Added missing parameter to each_context() in doc example.Tim Graham
2015-02-13Added each_context() and a template tip to custom admin view docs.Joe Simpson
2015-02-05Documented that m2m_changed isn't triggered when M2M is displayed as admin ↵Loic Bistuer
inline. Refs #6707.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-20Fixed #24186 -- Fixed a typo in the admin docs.Simon Charette
Thanks to Keryn Knight for the report.
2015-01-17Removed ModelAdmin.get_formsets() per deprecation timeline; refs #20702.Tim Graham
2015-01-17Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson
2015-01-13Fixed bad model example in admin docs.Collin Anderson
2015-01-10Fixed #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-01Fixed typo in docs/ref/contrib/admin/index.txt.Tim Graham
2014-12-31Fixed #22295 -- Replaced permission check for displaying admin user-toolsThomas Tanner
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Deprecated 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-26Documented AdminSite.has_permission(); refs #22295.Tim Graham
2014-12-22Upgrade jQuery from 1.11.1 to 1.11.2Collin Anderson
refs #23355
2014-12-12Fixed template tag braces spacing.Kevin Marsh
2014-12-03Removed redundant numbered parameters from str.format().Berker Peksag
Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}".
2014-11-25Added warning about get_inline_instances() permission checking; refs #23754.Simon Charette
2014-11-15Fixes 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-30Explained why admindocs omits model methods with arguments.Zan Anderle
2014-10-30Added missing imports to example from previous commit.Tim Graham
2014-10-30Fixed #23575 -- Added a code example for custom AdminSite.Berker Peksag
2014-10-29Added cross reference in admin docs to topic about saving objects in formsets.P.A. SCHEMBRI
2014-10-06Updated 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-26Fixed #8408 -- Added ModelAdmin.show_full_result_count to avoid COUNT() query.Thomas Chaumeny
Thanks lidaobing for the suggestion.
2014-08-27Fixed #13749 -- Added link from admin site to front-end site.areski
Thanks romankrv for the suggestion.
2014-08-26Fixed #17707, #20734 -- Added examples to URL namespacing docs.Tim Graham
Thanks Daniele Procida for review.
2014-08-24Fixed #23355 -- Updated admin jQuery to 1.11.1.Tim Graham
2014-08-19Removed unnecessary code-block directives.areski
2014-08-13Refs #23276 -- Added missing url() in some places.Collin Anderson