Browse Source

Fix django <= 1.6 popups

Denis K 9 years ago
parent
commit
11f2509680

+ 8 - 0
jet/static/admin/js/admin/RelatedObjectLookups.js

@@ -66,6 +66,14 @@ function showRelatedObjectPopup(triggeringLink) {
     var href = triggeringLink.href;
 
     // Django JET
+    if (href.indexOf('_popup=1') == -1) {
+        if (href.indexOf('?') == -1) {
+            href += '?_popup=1';
+        } else {
+            href += '&_popup=1';
+        }
+    }
+
     showRelatedPopup(name, href);
 
     return false;

+ 4 - 3
jet/templates/admin/change_form.html

@@ -76,7 +76,7 @@
                     </ul>
                 {% endif %}
 
-                {% if is_popup %}<input type="hidden" name="{{ is_popup_var }}" value="1" />{% endif %}
+                {% if is_popup %}<input type="hidden" name="{{ is_popup_var|default:"_popup" }}" value="1" />{% endif %}
                 {% if to_field %}<input type="hidden" name="{{ to_field_var }}" value="{{ to_field }}" />{% endif %}
                 {% if errors %}
                     {{ adminform.form.non_field_errors }}
@@ -106,12 +106,13 @@
                 {% block admin_change_form_document_ready %}
                     <script type="text/javascript">
                         (function($) {
+                            {# JET: Add handlers for Django <= 1.6 #}
                             $(document).ready(function() {
-                                $('.add-another').click(function(e) {
+                                $('.add-another').removeAttr('onclick').click(function(e) {
                                     e.preventDefault();
                                     showAddAnotherPopup(this);
                                 });
-                                $('.related-lookup').click(function(e) {
+                                $('.related-lookup').removeAttr('onclick').click(function(e) {
                                     e.preventDefault();
                                     showRelatedObjectLookupPopup(this);
                                 });