More About additions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / z3950 / searchresult.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Z39.50 Search Results</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script language="javascript" type="text/javascript">
5 //<![CDATA[
6     function Import(GetThisOne) {
7         opener.document.location= "../cataloguing/addbiblio.pl?z3950=1&oldbiblionumber=<!-- TMPL_VAR NAME="oldbiblionumber" -->&breedingid="+GetThisOne;
8         self.close();
9         return false;
10     }
11 //]]>
12 </script>
13 </head>
14 <body>
15
16     <h2>Z3950 Search Results</h2>
17     
18     <!-- TMPL_IF NAME="breeding_loop" -->
19 <table>
20     <tr>
21         <th>Title</th>
22         <th>Author</th>
23         <th>ISBN</th>
24         <th>coming from</th>
25         <th>&nbsp;</th>
26         <th>&nbsp;</th>
27     </tr>
28                 <!-- TMPL_LOOP NAME="breeding_loop" -->
29         <tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
30                         <td><!-- TMPL_VAR NAME="title" --></td>
31             <td><!-- TMPL_VAR NAME="author" --></td>
32             <td><!-- TMPL_VAR NAME="isbn" --></td>
33             <td><!-- TMPL_VAR NAME="file" --></td>
34             <td><a href="javascript:Import(<!-- TMPL_VAR NAME="id" -->)">Import this biblio</a></td>
35         </tr>
36     <!-- /TMPL_LOOP -->
37         </table>
38     <!-- TMPL_ELSE -->
39                 <p>Nothing found</p>
40     <!-- /TMPL_IF -->
41     <!-- TMPL_IF NAME="numberpending" --><h1>Still <!-- TMPL_VAR NAME="numberpending" --> requests to go</h1><!-- /TMPL_IF -->
42     
43
44 </body>
45 </html>