|
Lines 8-17
Link Here
|
| 8 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
8 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
| 9 |
<script type="text/javascript"> |
9 |
<script type="text/javascript"> |
| 10 |
//<![CDATA[ |
10 |
//<![CDATA[ |
|
|
11 |
[% IF (dateformat == 'metric') %]dt_add_type_uk_date();[% END %] |
| 11 |
$(document).ready(function() { |
12 |
$(document).ready(function() { |
| 12 |
$("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
13 |
$("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 13 |
"aaSorting": [[ 3, "desc" ]], |
14 |
"aaSorting": [[ 3, "desc" ]], |
| 14 |
"aoColumns": [ null,null,null,{ "sType": "title-string" } ], |
15 |
"aoColumns": [ null,null,null,{ "sType": "uk_date" } ], |
| 15 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
16 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
| 16 |
"iDisplayLength": 20, |
17 |
"iDisplayLength": 20, |
| 17 |
"sPaginationType": "four_button" |
18 |
"sPaginationType": "four_button" |
|
Lines 78-84
Link Here
|
| 78 |
[% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted |
79 |
[% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted |
| 79 |
[% ELSE %][% QUEUED_MESSAGE.status %][% END %] |
80 |
[% ELSE %][% QUEUED_MESSAGE.status %][% END %] |
| 80 |
</td> |
81 |
</td> |
| 81 |
<td><span title="[% QUEUED_MESSAGE.time_queued %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</span></td> |
82 |
<td>[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</td> |
| 82 |
</tr> |
83 |
</tr> |
| 83 |
[% END %] |
84 |
[% END %] |
| 84 |
</tbody> |
85 |
</tbody> |
| 85 |
- |
|
|