Fixed inconsistent spacing in contrib.admin.views.main

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1574 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-12-09 02:16:17 +00:00
parent 9e2b463baf
commit dc2daff31f
1 changed files with 3 additions and 3 deletions

View File

@ -378,9 +378,9 @@ def render_change_form(opts, manipulator, app_label, context, add=False, change=
extra_context = {
'add': add,
'change': change,
'bound_manipulator' : AdminBoundManipulator(opts, manipulator, context['form']),
'has_delete_permission' : context['perms'][app_label][opts.get_delete_permission()],
'form_url' : form_url,
'bound_manipulator': AdminBoundManipulator(opts, manipulator, context['form']),
'has_delete_permission': context['perms'][app_label][opts.get_delete_permission()],
'form_url': form_url,
'app_label': app_label,
}
context.update(extra_context)