Kaydet (Commit) ec8848da authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

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
üst c2ba59fc
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment