synch'ing 2.0.0 branch (RC4 tag) and head
[koha.git] / koha-tmpl / opac-tmpl / css / en / opac-searchresults.tmpl
1 <!-- TMPL_INCLUDE NAME="opac-top.inc" -->
2 <div id="mainbloc">
3 <!-- TMPL_IF NAME="searchdesc" -->
4     <p class="center">You searched on <b><!-- TMPL_VAR NAME="searchdesc" --></b></p>
5 <!-- TMPL_ELSE -->
6         <!-- TMPL_IF name="searchnew" -->
7                 <p><!-- TMPL_VAR name=itemtype --> acquired in the last <i><!-- TMPL_VAR name="duration" --></i> days</p>
8         <!-- TMPL_ELSE -->
9                 <p>You did not specify any search criteria</p>
10         <!-- /TMPL_IF -->
11 <!-- /TMPL_IF -->
12
13 <p class="center"><!-- TMPL_VAR NAME="numrecords" --> results found</p>
14 <p class="center">
15     <!-- Row of numbers corresponding to search result pages -->
16     <!-- TMPL_IF NAME="displayprev" -->
17         <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME='prevstartfrom' --><!-- TMPL_LOOP NAME='FORMINPUTS' -->&amp;<!-- TMPL_VAR NAME='field' -->=<!-- TMPL_VAR NAME='value' ESCAPE=URL --><!-- /TMPL_LOOP -->">&lt;&lt;</a>
18     <!-- TMPL_ELSE -->
19         &nbsp;
20     <!-- /TMPL_IF -->
21     <!-- TMPL_LOOP NAME="numbers" -->
22         <!-- TMPL_IF NAME="highlight" -->
23                 <span class="smallnumberactive"><!--TMPL_VAR name="number" --></span>&nbsp;
24         <!-- TMPL_ELSE -->
25                 <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="startfrom" --><!-- TMPL_LOOP NAME="FORMINPUTS" -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->" class="smallnumber">
26                         <!--TMPL_VAR name="number" -->
27                 </a>&nbsp;
28         <!-- /TMPL_IF -->
29     <!-- /TMPL_LOOP -->
30     <!-- TMPL_IF NAME="displaynext" -->
31         <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="nextstartfrom" --><!-- TMPL_LOOP NAME="FORMINPUTS" -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->">&gt;&gt;</a>
32     <!-- TMPL_ELSE -->
33         &nbsp;
34     <!-- /TMPL_IF -->
35 </p>
36 <p>&nbsp;</p>
37 <!-- Search Results Table -->
38 <!-- TMPL_IF NAME="numrecords" -->
39         <!-- If we have a subject table -->
40                 <!-- TMPL_IF NAME="subjectsearch" -->
41                 <table border="0" cellspacing="0" cellpadding="2">
42                         <tr bgcolor="#99cccc" background="<!-- TMPL_VAR NAME="themelang" -->/images/background-opac.gif">
43                                 <th>Subject</th>
44                         </tr>
45                         <!-- TMPL_LOOP NAME=SEARCH_RESULTS -->
46                                 <tr>
47                                         <td><a href="/cgi-bin/koha/opac-searchresults.pl?&subjectitems=<!-- TMPL_VAR NAME=subject ESCAPE=URL -->"><!-- TMPL_VAR NAME=subject --></a></td>
48                                 </tr>
49                         <!-- /TMPL_LOOP -->
50                         <tr bgcolor="#99cccc" background="<!-- TMPL_VAR NAME="themelang" -->/images/background-opac.gif">
51                                 <td colspan="4">
52                                         &nbsp;
53                                 </td>
54                         </tr>
55                 </table>
56
57 <!-- Else we have a list of items -->
58 <!-- TMPL_ELSE -->
59         <table cellspacing="0">
60         <tr>
61                 <th>Title</th>
62                 <th>Author</th>
63                 <th>&copy;</th>
64                 <th>Item Count</th>
65                 <th>Location</th>
66                 <th>&nbsp;</th>
67         </tr>
68 <!-- Actual Search Results -->
69 <!-- TMPL_LOOP NAME="SEARCH_RESULTS" -->
70         <tr>
71                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
72                         <a class="transparent" href="/cgi-bin/koha/opac-detail.pl?bib=<!-- TMPL_VAR NAME="biblionumber" ESCAPE=URL -->"><!-- TMPL_VAR NAME="title" --></a>
73                 </td>
74                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
75                         <a class="transparent" href="/cgi-bin/koha/opac-searchresults.pl?author=<!-- TMPL_VAR NAME="author" ESCAPE=URL -->"><!-- TMPL_VAR NAME="author" --></a>
76                 </td>
77                 <td align="center"<!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
78                         <!-- TMPL_VAR NAME="copyrightdate" -->
79                 </td>
80                 <td align="center" <!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
81                         <!-- TMPL_VAR NAME="itemcount" -->
82                 </td>
83                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
84                         <!-- TMPL_VAR NAME="location" -->
85                 </td>
86                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
87                         <!-- TMPL_UNLESS NAME="norequests" -->
88                                 <a class="transparent" href="/cgi-bin/koha/opac-reserve.pl?bib=<!-- TMPL_VAR NAME="biblionumber" ESCAPE=URL -->">Request</a>
89                         <!-- TMPL_ELSE -->
90                                 Not Reservable
91                         <!-- /TMPL_UNLESS -->
92                 </td>
93         </tr>
94 <!-- /TMPL_LOOP -->
95         <tr>
96                 <th align="left">
97                         <!-- TMPL_IF NAME="displayprev" -->
98                                 <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="prevstartfrom" --><!-- TMPL_LOOP NAME=FORMINPUTS -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->">&lt;&lt;&lt; Previous</a>
99                         <!-- TMPL_ELSE -->
100                                 &nbsp;
101                         <!-- /TMPL_IF -->
102                 </th>
103                 <th colspan="3">&nbsp;</th>
104                 <th colspan="2" align="right">
105                         <!-- TMPL_IF NAME="displaynext" -->
106                                 <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="nextstartfrom" --><!-- TMPL_LOOP NAME=FORMINPUTS -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->">Next &gt;&gt;&gt;</a>
107                         <!-- TMPL_ELSE -->
108                                 &nbsp;
109                         <!-- /TMPL_IF -->
110                 </th>
111         </tr>
112 </table>
113 <!-- /TMPL_IF -->
114
115 <p class="center">
116         Results <i><!-- TMPL_VAR NAME="startfrom" --></i> through <i><!-- TMPL_VAR NAME="endat" --></i> of <i><!-- TMPL_VAR NAME="numrecords" --></i> records.
117 </p>
118
119 <p class="center">
120     <!-- Row of numbers corresponding to search result pages -->
121     <!-- TMPL_IF NAME="displayprev" -->
122         <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME='prevstartfrom' --><!-- TMPL_LOOP NAME='FORMINPUTS' -->&amp;<!-- TMPL_VAR NAME='field' -->=<!-- TMPL_VAR NAME='value' ESCAPE=URL --><!-- /TMPL_LOOP -->">&lt;&lt;</a>
123     <!-- TMPL_ELSE -->
124         &nbsp;
125     <!-- /TMPL_IF -->
126     <!-- TMPL_LOOP NAME="numbers" -->
127         <!-- TMPL_IF NAME="highlight" -->
128                 <span class="smallnumberactive"><!--TMPL_VAR name="number" --></span>&nbsp;
129         <!-- TMPL_ELSE -->
130                 <a class="smallnumber" href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="startfrom" --><!-- TMPL_LOOP NAME="FORMINPUTS" -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->">
131                         <!--TMPL_VAR name="number" -->
132                 </a>&nbsp;
133         <!-- /TMPL_IF -->
134     <!-- /TMPL_LOOP -->
135     <!-- TMPL_IF NAME="displaynext" -->
136         <a href="/cgi-bin/koha/opac-searchresults.pl?startfrom=<!-- TMPL_VAR NAME="nextstartfrom" --><!-- TMPL_LOOP NAME="FORMINPUTS" -->&amp;<!-- TMPL_VAR NAME="field" -->=<!-- TMPL_VAR NAME="value" ESCAPE=URL --><!-- /TMPL_LOOP -->">&gt;&gt;</a>
137     <!-- TMPL_ELSE -->
138         &nbsp;
139     <!-- /TMPL_IF -->
140 </p>
141
142 <!-- TMPL_ELSE -->
143 <p class="center">      Sorry, there were no results </p>
144 <!-- /TMPL_IF -->
145
146 <p class="center">
147         Try another <a href="/cgi-bin/koha/opac-search.pl">search</a>
148 </p>
149 </div>
150 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->