Changes between Initial Version and Version 1 of Ticket #12830
- Timestamp:
- Feb 9, 2010, 3:13:28 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12830
- Property Resolution → duplicate
- Property Status new → closed
-
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 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 {{{ 3 3 <script type="text/javascript"> 4 4 (function($) { … … 8 8 })(jQuery.noConflict()); 9 9 </script> 10 10 }}} 11 11 It 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.