MARC search fixes and improvements. Now, ALL searches are indexed and should be very...
[koha.git] / koha-tmpl / intranet-tmpl / default / en / search.marc / result.tmpl
1 <TMPL_IF NAME="opac">
2     <TMPL_INCLUDE NAME="opac-top.inc">
3 <TMPL_ELSE>
4     <TMPL_INCLUDE NAME="cat-top.inc">
5 </TMPL_IF>
6
7 <TMPL_IF NAME="loggedinuser">
8     <p align=left>Logged in as: <TMPL_VAR NAME="loggedinuser"> [<a href=/cgi-bin/koha/logout.pl>Log Out</a>]</p>
9 <TMPL_ELSE>
10     <p align=left><a href=/cgi-bin/koha/userpage.pl>Log In</a> to Koha</p>
11 </TMPL_IF>
12
13 <center>
14
15 <table border=0 cellspacing=0 cellpadding=2 width="90%">
16 <thead>
17         <tr
18         <TMPL_IF NAME="opac">
19                         bgcolor=#99cccc background=/images/background-opac.gif
20                 <TMPL_ELSE>
21                         bgcolor="#ad11ad"
22                 </TMPL_IF>
23         >
24         <th>Biblio #</th>
25         <th>Author</th>
26         <th>Title</th>
27         </tr>
28 <tbody>
29         <TMPL_LOOP name="result">
30                 <tr>
31                         <td><a href="../MARCdetail.pl?bibid=<TMPL_VAR name="bibid">"><TMPL_VAR name="bibid"></a></td>
32                         <td><TMPL_VAR name="author"></td>
33                         <td><TMPL_VAR name="title"></td>
34                 </tr>
35         </TMPL_LOOP>
36 </table>
37 <TMPL_IF NAME="opac">
38     <TMPL_INCLUDE NAME="opac-bottom.inc">
39 <TMPL_ELSE>
40     <TMPL_INCLUDE NAME="cat-bottom.inc">
41 </TMPL_IF>