added all the opac default/en/ files into the koha-tmpl archive. All future html...
[koha.git] / koha-tmpl / opac-tmpl / default / en / opac-searchresults.tmpl
1 <TMPL_INCLUDE NAME="opac-top.inc">
2
3 <center>
4
5 <TMPL_IF NAME="loggedinuser">
6     <p align=left>Logged in as: <TMPL_VAR NAME="loggedinuser"> [<a href=/cgi-bin/koha/logout.pl>Log Out</a>]</p>
7 <TMPL_ELSE>
8     <p align=left><a href=/cgi-bin/koha/userpage.pl>Log In</a> to Koha</p>
9 </TMPL_IF>
10
11
12 <TMPL_IF NAME="searchdesc">
13     You searched on <b><TMPL_VAR NAME="searchdesc"></b>
14 <TMPL_ELSE>
15     You did not specify any seach criteria<br>
16 </TMPL_IF>
17
18 <TMPL_VAR NAME="numrecords"> results found
19 <p>
20
21
22     <!-- Row of numbers corresponding to search result pages -->
23     <TMPL_IF NAME="displayprev">
24         <a href=./dosearch.pl?startfrom=<TMPL_VAR NAME="prevstartfrom"><TMPL_LOOP NAME="FORMINPUTS">&<TMPL_VAR NAME="field">=<TMPL_VAR NAME="value" ESCAPE=URL></TMPL_LOOP>><img src=<TMPL_VAR NAME="themelang">/images/numbers/prev.gif border=0></a>
25     <TMPL_ELSE>
26         <img src=<TMPL_VAR NAME="themelang">/images/numbers/placeholder.gif border=0>
27     </TMPL_IF>
28     <TMPL_LOOP NAME="numbers">
29         <TMPL_IF NAME="highlight">
30             <img src=<TMPL_VAR NAME="themelang">/images/numbers/<TMPL_VAR NAME=number>-highlight.gif> 
31         <TMPL_ELSE>
32             <a href=./dosearch.pl?startfrom=<TMPL_VAR NAME="startfrom"><TMPL_LOOP NAME="FORMINPUTS">&<TMPL_VAR NAME="field">=<TMPL_VAR NAME="value" ESCAPE=URL></TMPL_LOOP>><img src=<TMPL_VAR NAME="themelang">/images/numbers/<TMPL_VAR NAME=number>.gif border=0></a> 
33         </TMPL_IF>
34     </TMPL_LOOP>
35     <TMPL_IF NAME="displaynext">
36         <a href=./dosearch.pl?startfrom=<TMPL_VAR NAME="nextstartfrom"><TMPL_LOOP NAME="FORMINPUTS">&<TMPL_VAR NAME="field">=<TMPL_VAR NAME="value" ESCAPE=URL></TMPL_LOOP>><img src=<TMPL_VAR NAME="themelang">/images/numbers/next.gif border=0></a>
37     <TMPL_ELSE>
38         <img src=<TMPL_VAR NAME="themelang">/images/numbers/placeholder.gif border=0>
39     </TMPL_IF>
40
41     <p>
42
43
44
45 <!-- Search Results Table -->
46
47 <TMPL_IF NAME="numrecords">
48
49     <table border=0 cellspacing=0 cellpadding=2 width=90%>
50     <tr bgcolor=#99cccc background=<TMPL_VAR NAME="themelang">/images/background-opac.gif>
51             <th align=left>Title</th><th align=left>Author</th><th>&copy;</th><th>Item Count</th><th>Location</th>
52     </tr>
53
54
55
56 <!-- Actual Search Results -->
57
58     <TMPL_LOOP NAME="SEARCH_RESULTS">
59       <tr>
60       <td><a href=./detail.pl?bib=<TMPL_VAR NAME="biblionumber" ESCAPE=URL>><TMPL_VAR NAME="title"></a></td>
61       <td><a href=./dosearch.pl?author=<TMPL_VAR NAME="author" ESCAPE=URL>><TMPL_VAR NAME="author"></a></td>
62       <td align=center> <TMPL_VAR NAME="copyrightdate"> </td>
63       <td align=center> <TMPL_VAR NAME="itemcount"> </td>
64       <td> <TMPL_VAR NAME="location"> </td>
65       </tr>
66     </TMPL_LOOP>
67
68
69
70     <tr bgcolor=#99cccc background=<TMPL_VAR NAME="themelang">/images/background-opac.gif><td colspan=6>
71         <table border=0 cellpadding=0 cellspacing=0 width=100%>
72         <tr bgcolor=#99cccc background=<TMPL_VAR NAME="themelang">/images/background-opac.gif><td align=left>
73         <TMPL_IF NAME="displayprev">
74             <a href=dosearch.pl?startfrom=<TMPL_VAR NAME="prevstartfrom"><TMPL_LOOP NAME=FORMINPUTS>&<TMPL_VAR NAME="field">=<TMPL_VAR NAME="value" ESCAPE=URL></TMPL_LOOP>>Previous Records</a>
75         <TMPL_ELSE>
76             &nbsp;
77         </TMPL_IF>
78
79
80         </td><td align=right>
81         <TMPL_IF NAME="displaynext">
82             <a href=dosearch.pl?startfrom=<TMPL_VAR NAME="nextstartfrom"><TMPL_LOOP NAME=FORMINPUTS>&<TMPL_VAR NAME="field">=<TMPL_VAR NAME="value" ESCAPE=URL></TMPL_LOOP>>Next Records</a>
83         <TMPL_ELSE>
84             &nbsp;
85         </TMPL_IF>
86         </td></tr>
87         </table>
88     </td></tr>
89     </table>
90
91     <br>
92     Results <TMPL_VAR NAME="startfrom"> through <TMPL_VAR NAME="endat"> of <TMPL_VAR NAME="numrecords"> records.
93     <hr>
94
95
96 <TMPL_ELSE>
97 Sorry, there were no results <br>
98 </TMPL_IF>
99     Try another <a href=./opacsearch.pl>search</a>
100
101
102 <TMPL_INCLUDE NAME="opac-bottom.inc">