Fixing a bug that occured if Koha wasnt installed, but a cookie was set in the browser
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / z3950 / searchresult.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Z39.50 Search Results</title>
3 <meta http-equiv="refresh" content="2; url=<!-- TMPL_VAR NAME="refresh" -->" />
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5 <link rel="shortcut icon" href="<!-- TMPL_VAR NAME='themelang' -->/includes/favicon.ico" type="image/x-icon" />
6 <style type="text/css"> 
7     @import url(<!-- TMPL_VAR NAME='themelang' -->/includes/intranet.css);
8 </style>
9 </head>
10 <body>
11
12     <h2>Z3950 Search Results</h2>
13     
14     <!-- TMPL_IF NAME="breeding_loop" -->
15 <table>
16     <tr>
17         <th>Title</th>
18         <th>Author</th>
19         <th>ISBN</th>
20         <th>coming from</th>
21         <th>&nbsp;</th>
22         <th>&nbsp;</th>
23     </tr>
24                 <!-- TMPL_LOOP NAME="breeding_loop" -->
25         <tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
26                         <td><!-- TMPL_VAR NAME="title" --></td>
27             <td><!-- TMPL_VAR NAME="author" --></td>
28             <td><!-- TMPL_VAR NAME="isbn" --></td>
29             <td><!-- TMPL_VAR NAME="file" --></td>
30             <td><a href="javascript:Import(<!-- TMPL_VAR NAME="id" -->)">Import this biblio</a></td>
31         </tr>
32     <!-- /TMPL_LOOP -->
33         </table>
34     <!-- TMPL_ELSE -->
35                 <p>Nothing found</p>
36     <!-- /TMPL_IF -->
37     <!-- TMPL_IF NAME="numberpending" --><h1>Still <!-- TMPL_VAR NAME="numberpending" --> requests to go</h1><!-- /TMPL_IF -->
38     <script language="javascript" type="text/javascript">
39     function Import(GetThisOne) {
40         opener.document.location= "../cataloguing/addbiblio.pl?z3950=1&oldbiblionumber=<!-- TMPL_VAR NAME="oldbiblionumber" -->&breedingid="+GetThisOne;
41         self.close();
42         return false;
43     }
44 </script>
45
46 </body>
47 </html>