Denis K 8 years ago
parent
commit
94c99df064
2 changed files with 2 additions and 2 deletions
  1. 1 1
      jet/templates/admin/popup_response.html
  2. 1 1
      jet/templatetags/jet_tags.py

+ 1 - 1
jet/templates/admin/popup_response.html

@@ -5,7 +5,7 @@
       <script src="{% static "jet/js/build/bundle.min.js" %}"></script>
   </head>
   <body>
-    {% popup_response_data as data %}
+    {% jet_popup_response_data as data %}
     <div id="django-admin-popup-response-constants"
          data-popup-response="{{ data|escape }}">
     </div>

+ 1 - 1
jet/templatetags/jet_tags.py

@@ -368,7 +368,7 @@ def jet_next_object_url(context):
 
 
 @register.assignment_tag(takes_context=True)
-def popup_response_data(context):
+def jet_popup_response_data(context):
     if context.get('popup_response_data'):
         return context['popup_response_data']