1
0
mirror of https://github.com/django/django.git synced 2025-06-08 13:09:13 +00:00

magic-removal: Removed unused 'show_delete' argument in admin.views.main.render_change_form

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2086 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-21 04:23:00 +00:00
parent 861960f311
commit fe70b49661

View File

@ -163,7 +163,7 @@ class AdminBoundManipulator(BoundManipulator):
return str(getattr(ordered_obj, name))
return ""
def render_change_form(model, manipulator, context, add=False, change=False, show_delete=False, form_url=''):
def render_change_form(model, manipulator, context, add=False, change=False, form_url=''):
opts = model._meta
app_label = opts.app_label
extra_context = {