Commit ec8848da authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Fixed #8589 -- Fixed the URL for the logout link on the app_index page in admin.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8617 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent c2ba59fc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -404,7 +404,8 @@ class AdminSite(object):
        app_dict['models'].sort(lambda x, y: cmp(x['name'], y['name']))
        context = {
            'title': _('%s administration' % capfirst(app_label)),
            'app_list': [app_dict]
            'app_list': [app_dict],
            'root_path': self.root_path,
        }
        context.update(extra_context or {})
        return render_to_response(self.app_index_template or 'admin/app_index.html', context,