Changes between Initial Version and Version 1 of Ticket #12830


Ignore:
Timestamp:
Feb 9, 2010, 3:13:28 PM (14 years ago)
Author:
Karen Tracey
Comment:

Fixed formatting, please use preview prior to submit.

This sounds like #12396, which was fixed after beta1. (The fix does not include jquery in every admin page -- if you want to propose that you may want to bring it up on IRC or the dev list.)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12830

    • Property Resolutionduplicate
    • Property Status newclosed
  • Ticket #12830 – Description

    initial v1  
    1 In the admin interface, if you have a ModelAdmin class specifying actions=None, jquery.min.js is not included in the template.  However, in change_list.html there is the following code:
    2 
     1In the admin interface, if you have a !ModelAdmin class specifying actions=None, jquery.min.js is not included in the template.  However, in change_list.html there is the following code:
     2{{{
    33<script type="text/javascript">
    44(function($) {
     
    88})(jQuery.noConflict());
    99</script>
    10 
     10}}}
    1111It is my opinion that jquery.min.js should be included in every admin page.  My reasoning for this is that I have overridden a few of the admin templates to make use of jquery and I need to know that jquery will be available.
Back to Top