|
@@ -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);
|
|
|
});
|