Lines 1-7
Link Here
|
1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › Acquisitions › Search Existing Records</title> |
2 |
<title>Koha › Acquisitions › Search Existing Records</title> |
|
|
3 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
3 |
[% INCLUDE 'greybox.inc' %] |
4 |
[% INCLUDE 'greybox.inc' %] |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
6 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
7 |
[% INCLUDE 'datatables-strings.inc' %] |
8 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
9 |
<script type="text/javascript"> |
10 |
//<![CDATA[ |
11 |
$(document).ready(function() { |
12 |
var resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, { |
13 |
"aoColumnDefs": [ |
14 |
{ "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false }, |
15 |
], |
16 |
"sPaginationType": "four_button" |
17 |
} ) ); |
18 |
}); |
19 |
//]]> |
20 |
</script> |
5 |
</head> |
21 |
</head> |
6 |
<body> |
22 |
<body> |
7 |
[% INCLUDE 'header.inc' %] |
23 |
[% INCLUDE 'header.inc' %] |
Lines 38-50
Link Here
|
38 |
|
54 |
|
39 |
[% IF ( total ) %] |
55 |
[% IF ( total ) %] |
40 |
<div class="searchresults"> |
56 |
<div class="searchresults"> |
41 |
<table> |
57 |
<table id="resultst"> |
|
|
58 |
<thead> |
42 |
<tr> |
59 |
<tr> |
43 |
<th>Summary</th> |
60 |
<th>Summary</th> |
44 |
<th>Publisher</th> |
61 |
<th>Publisher</th> |
45 |
<th>Copyright</th> |
62 |
<th>Copyright</th> |
46 |
<th colspan="2"> </th> |
63 |
<th> </th> |
|
|
64 |
<th> </th> |
47 |
</tr> |
65 |
</tr> |
|
|
66 |
</thead> |
67 |
<tbody> |
48 |
[% FOREACH biblio IN resultsloop %] |
68 |
[% FOREACH biblio IN resultsloop %] |
49 |
<tr> |
69 |
<tr> |
50 |
<td> |
70 |
<td> |
Lines 73-78
Link Here
|
73 |
</td> |
93 |
</td> |
74 |
</tr> |
94 |
</tr> |
75 |
[% END %] |
95 |
[% END %] |
|
|
96 |
</tbody> |
76 |
</table> |
97 |
</table> |
77 |
</div> |
98 |
</div> |
78 |
[% END %] |
99 |
[% END %] |
79 |
- |
|
|