Lines 1-7
Link Here
|
1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › Tools › Patron lists</title> |
2 |
<title>Koha › Tools › Patron lists</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
|
4 |
[% INCLUDE 'greybox.inc' %] |
5 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
5 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
6 |
[% INCLUDE 'datatables.inc' %] |
6 |
[% INCLUDE 'datatables.inc' %] |
7 |
|
7 |
|
Lines 10-16
Link Here
|
10 |
$(document).ready(function() { |
10 |
$(document).ready(function() { |
11 |
$('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
11 |
$('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
12 |
"aoColumnDefs": [ |
12 |
"aoColumnDefs": [ |
13 |
{ "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
13 |
{ "aTargets": [ -1, -2, -3, -4 ], "bSortable": false, "bSearchable": false }, |
14 |
], |
14 |
], |
15 |
"sPaginationType": "four_button" |
15 |
"sPaginationType": "four_button" |
16 |
} )); |
16 |
} )); |
Lines 45-50
Link Here
|
45 |
<th> </th> |
45 |
<th> </th> |
46 |
<th> </th> |
46 |
<th> </th> |
47 |
<th> </th> |
47 |
<th> </th> |
|
|
48 |
<th> </th> |
48 |
</tr> |
49 |
</tr> |
49 |
</thead> |
50 |
</thead> |
50 |
|
51 |
|
Lines 68-73
Link Here
|
68 |
<i class="icon-trash"></i> Delete |
69 |
<i class="icon-trash"></i> Delete |
69 |
</a> |
70 |
</a> |
70 |
</td> |
71 |
</td> |
|
|
72 |
<td> |
73 |
<a class="btn btn-mini" href="#" onclick='GB_showCenter(_("Print patron cards from list"), "/cgi-bin/koha/patroncards/print.pl?patronlist_id=[% l.patron_list_id %]", 700, 800);return false;'> |
74 |
<i class="icon-print"></i> Print patron cards |
75 |
</a> |
76 |
</td> |
71 |
</tr> |
77 |
</tr> |
72 |
[% END %] |
78 |
[% END %] |
73 |
</tbody> |
79 |
</tbody> |
74 |
- |
|
|