summaryrefslogtreecommitdiff
path: root/django/contrib/admin/sites.py
AgeCommit message (Expand)Author
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-02-27Fixed #12933 - AdminSite.admin_view disables @csrf_view_exemptLuke Plant
2010-02-21Fixed #12066 - Moved auth context processor from core to the auth app. Thanks...Jannis Leidel
2010-01-12Fixed #8933 - Allow more admin templates to be overridden.Jannis Leidel
2010-01-10Fixed #8049 -- Fixed inconsistency in admin site is_active checks. Thanks for...Adrian Holovaty
2010-01-09Fixed #6991 -- Removed some redundant user.is_authenticated() calls in variou...Adrian Holovaty
2009-12-03Updated all PendingDeprecationWarning from 1.1 to DeprecationWarning ready fo...Luke Plant
2009-10-30Allow CsrfResponseMiddleware to be used if templates cannot be updated.Luke Plant
2009-10-27Moved contrib.csrf.* to core code.Luke Plant
2009-10-26Fixed #9977 - CsrfMiddleware gets template tag added, session dependency remo...Luke Plant
2009-10-24Fixed #12067 - check_dependencies in contrib.admin.sites not triggered using ...Luke Plant
2009-09-10Fixed #11061: Malformed POST request causes TypeError in AdminSite.login().Luke Plant
2009-07-16Fixed #10061 -- Added namespacing for named URLs - most importantly, for the ...Russell Keith-Magee
2009-07-13Fixed #11416 -- Restored use of the never_cache decorator on admin views. Tha...Russell Keith-Magee
2009-04-08Fixed #9036: unified the permission checking in `AdminSite`, pushing it down ...Jacob Kaplan-Moss
2009-04-06Fixed #10423, a type on the `AdminSite.admin_view` docstring.Jacob Kaplan-Moss
2009-04-06Made a bunch of improvements to admin actions. Be warned: this includes one m...Jacob Kaplan-Moss
2009-04-01Fixed #9908: allow individual app index templates in the admin. Thanks, arne.Jacob Kaplan-Moss
2009-03-31Fixed #10553 -- Corrected several uses of `URLconf` in documentation and comm...Gary Wilson Jr
2009-03-23Fixed #10505: added support for bulk admin actions, including a globally-avai...Jacob Kaplan-Moss
2009-03-17`ModelAdmin` validation now runs when using the `site.register(Model, **kwarg...Jacob Kaplan-Moss
2009-01-14Fixed #6470: made the admin use a URL resolver.Jacob Kaplan-Moss
2008-09-16Changed the app-level links on the admin index page to include trailing slash...Adrian Holovaty
2008-09-10Moved the bulk of the shortcut() function in django/views/defaults.py to a ne...Adrian Holovaty
2008-09-08Fixed #7929 -- Removed some snippets of admin code that weren't doing anythin...Adrian Holovaty
2008-09-02Security fix. Announcement forthcoming.Jacob Kaplan-Moss
2008-08-28Marked a handful of missed strings for translation. Fixes #8644, #8617, and #...Jacob Kaplan-Moss
2008-08-27Fixed #8589 -- Fixed the URL for the logout link on the app_index page in admin.Malcolm Tredinnick
2008-08-27Fixed #8577 -- Fixed a couple of indentation errors when viewing the app-indexMalcolm Tredinnick
2008-08-25Fixed #8522 -- Allow app_index to take extra_context to be consistent with th...Brian Rosner
2008-08-24Fixed #8520 -- Corrected a dumb typo in the call to password_change in django...Brian Rosner
2008-08-24Fixed #8509: Cleaned up handling of test cookies in admin logins. Thanks to r...Russell Keith-Magee
2008-08-23Fixed #8498 -- Add the ability to customize the template for app_index simila...Brian Rosner
2008-08-23Fixed #7776: Ensured that the test cookie is always deleted once a login has ...Russell Keith-Magee
2008-08-23Fixed #1390 -- Added an app index in the admin interface. Thanks juliae and e...Brian Rosner
2008-08-23Fixed #8493 -- Fixed a NoReverseMatch when redirecting to password_change/don...Brian Rosner
2008-08-10Fixed #8205 -- Corrected a misspelling in the API introduced in [8265] and [8...Russell Keith-Magee
2008-08-10Fixed #8202 -- Moved user_change_password to UserAdmin. This enables seamless...Brian Rosner
2008-08-09Added a missing import in AdminSite.check_dependancies.Brian Rosner
2008-08-09Moved ModelAdmin.check_dependancies to AdminSite. Make debugging problems why...Brian Rosner
2008-08-09Fixed #5801: admin requests with GET args now get properly bounced through lo...Jacob Kaplan-Moss
2008-08-02Removed some unused and duplicated imports.Gary Wilson Jr
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-07-23Improved admin model registration options: you can now register using registe...Jacob Kaplan-Moss
2008-07-20Fixed #7775 -- Removed some duplicated code from the admin login sequence. Th...Russell Keith-Magee
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner