|
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 |
'bPaginate': false, |
| 14 |
'bFilter': false, |
| 15 |
'bInfo': false, |
| 16 |
'bSort': false, |
| 17 |
} ) ); |
| 18 |
}); |
| 19 |
//]]> |
| 20 |
</script> |
| 5 |
</head> |
21 |
</head> |
| 6 |
<body id="acq_neworderbiblio" class="acq"> |
22 |
<body id="acq_neworderbiblio" class="acq"> |
| 7 |
[% INCLUDE 'header.inc' %] |
23 |
[% INCLUDE 'header.inc' %] |
|
Lines 38-51
Link Here
|
| 38 |
|
54 |
|
| 39 |
[% IF ( total ) %] |
55 |
[% IF ( total ) %] |
| 40 |
<div class="searchresults"> |
56 |
<div class="searchresults"> |
| 41 |
<table> |
57 |
<table id="resultst"> |
| 42 |
<tr> |
58 |
<thead> |
| 43 |
<th>Summary</th> |
59 |
<tr> |
| 44 |
<th>Publisher</th> |
60 |
<th>Summary</th> |
| 45 |
<th>Copyright</th> |
61 |
<th>Publisher</th> |
| 46 |
<th colspan="2"> </th> |
62 |
<th>Copyright</th> |
| 47 |
</tr> |
63 |
<th> </th> |
| 48 |
[% FOREACH biblio IN resultsloop %] |
64 |
<th> </th> |
|
|
65 |
</tr> |
| 66 |
</thead> |
| 67 |
<tbody> |
| 68 |
[% FOREACH biblio IN resultsloop %] |
| 49 |
<tr> |
69 |
<tr> |
| 50 |
<td> |
70 |
<td> |
| 51 |
<p><span class="title">[% biblio.title |html %]</span> |
71 |
<p><span class="title">[% biblio.title |html %]</span> |
|
Lines 72-78
Link Here
|
| 72 |
</a> |
92 |
</a> |
| 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 |
- |
|
|