Index: django/contrib/admin/templatetags/admin_modify.py
===================================================================
--- django/contrib/admin/templatetags/admin_modify.py   (wersja 13418)
+++ django/contrib/admin/templatetags/admin_modify.py   (kopia robocza)
@@ -27,7 +27,7 @@
     change = context['change']
     is_popup = context['is_popup']
     save_as = context['save_as']
-    return {
+    extra_context = {
         'onclick_attrib': (opts.get_ordered_objects() and change
                             and 'onclick="submitOrderForm();"' or ''),
         'show_delete_link': (not is_popup and context['has_delete_permission']
@@ -39,4 +39,7 @@
         'is_popup': is_popup,
         'show_save': True
     }
+    context.update(extra_context)
+    return context
+
 submit_row = register.inclusion_tag('admin/submit_line.html', takes_context=True)(submit_row)
