0e5b3f3df3
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
45 lines
1.3 KiB
Text
45 lines
1.3 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Z39.50 search results</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script language="javascript" type="text/javascript">
|
|
//<![CDATA[
|
|
function Import(GetThisOne) {
|
|
opener.document.location= "../cataloguing/addbiblio.pl?z3950=1&oldbiblionumber=[% oldbiblionumber %]&breedingid="+GetThisOne;
|
|
self.close();
|
|
return false;
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="cat_searchresult" class="cat">
|
|
|
|
<h2>Z3950 search results</h2>
|
|
|
|
[% IF ( breeding_loop ) %]
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>ISBN</th>
|
|
<th>Coming from</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
[% FOREACH breeding_loo IN breeding_loop %]
|
|
<tr bgcolor="[% breeding_loo.toggle %]">
|
|
<td>[% breeding_loo.title |html %]</td>
|
|
<td>[% breeding_loo.author %]</td>
|
|
<td>[% breeding_loo.isbn %]</td>
|
|
<td>[% breeding_loo.file %]</td>
|
|
<td><a href="javascript:Import([% breeding_loo.id %])">Import this biblio</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
[% ELSE %]
|
|
<p>Nothing found</p>
|
|
[% END %]
|
|
[% IF ( numberpending ) %]<h1>Still [% numberpending %] requests to go</h1>[% END %]
|
|
|
|
|
|
</body>
|
|
</html>
|