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 11-17
Link Here
|
11 |
$('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
11 |
$('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
12 |
"autoWidth": false, |
12 |
"autoWidth": false, |
13 |
"aoColumnDefs": [ |
13 |
"aoColumnDefs": [ |
14 |
{ "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
14 |
{ "aTargets": [ -1, -2, -3, -4 ], "bSortable": false, "bSearchable": false }, |
15 |
], |
15 |
], |
16 |
"sPaginationType": "four_button" |
16 |
"sPaginationType": "four_button" |
17 |
} )); |
17 |
} )); |
Lines 46-51
Link Here
|
46 |
<th> </th> |
46 |
<th> </th> |
47 |
<th> </th> |
47 |
<th> </th> |
48 |
<th> </th> |
48 |
<th> </th> |
|
|
49 |
<th> </th> |
49 |
</tr> |
50 |
</tr> |
50 |
</thead> |
51 |
</thead> |
51 |
|
52 |
|
Lines 69-74
Link Here
|
69 |
<i class="fa fa-trash"></i> Delete |
70 |
<i class="fa fa-trash"></i> Delete |
70 |
</a> |
71 |
</a> |
71 |
</td> |
72 |
</td> |
|
|
73 |
<td> |
74 |
<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;'> |
75 |
<i class="icon-print"></i> Print patron cards |
76 |
</a> |
77 |
</td> |
72 |
</tr> |
78 |
</tr> |
73 |
[% END %] |
79 |
[% END %] |
74 |
</tbody> |
80 |
</tbody> |
75 |
- |
|
|