45 lines
1.4 KiB
Cheetah
45 lines
1.4 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Z39.50 Search Results</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script language="javascript" type="text/javascript">
|
|
//<![CDATA[
|
|
function Import(GetThisOne) {
|
|
opener.document.location= "../cataloguing/addbiblio.pl?z3950=1&oldbiblionumber=<!-- TMPL_VAR NAME="oldbiblionumber" -->&breedingid="+GetThisOne;
|
|
self.close();
|
|
return false;
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Z3950 Search Results</h2>
|
|
|
|
<!-- TMPL_IF NAME="breeding_loop" -->
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>ISBN</th>
|
|
<th>coming from</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="breeding_loop" -->
|
|
<tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
|
|
<td><!-- TMPL_VAR NAME="title" --></td>
|
|
<td><!-- TMPL_VAR NAME="author" --></td>
|
|
<td><!-- TMPL_VAR NAME="isbn" --></td>
|
|
<td><!-- TMPL_VAR NAME="file" --></td>
|
|
<td><a href="javascript:Import(<!-- TMPL_VAR NAME="id" -->)">Import this biblio</a></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
<!-- TMPL_ELSE -->
|
|
<p>Nothing found</p>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="numberpending" --><h1>Still <!-- TMPL_VAR NAME="numberpending" --> requests to go</h1><!-- /TMPL_IF -->
|
|
|
|
|
|
</body>
|
|
</html>
|