You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
449 B
HTML
18 lines
449 B
HTML
8 years ago
|
{% extends "admin/change_list.html" %}
|
||
|
|
||
|
{% block extrahead %}
|
||
|
{{ block.super }}
|
||
|
<script type="text/javascript">
|
||
|
(function($) {
|
||
|
$(document).ready(function() {
|
||
|
$('#result_list tr').each(function() {
|
||
|
if ($(this).find('td.field-is_open img').attr('alt') == 'False') {
|
||
|
console.log("yay");
|
||
|
$(this).css('opacity', '0.6');
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
})(django.jQuery);
|
||
|
</script>
|
||
|
{% endblock %}
|