Koha/koha-tmpl/intranet-tmpl/default/en/search.marc/result.tmpl
tipaul aa5bc6d084 MARC search fixes and improvements. Now, ALL searches are indexed and should be very fast with any statement.
a few improvments, and it will be useable even with a NON-MARC installation of koha.
2003-03-04 16:15:16 +00:00

41 lines
1,007 B
Cheetah

<TMPL_IF NAME="opac">
<TMPL_INCLUDE NAME="opac-top.inc">
<TMPL_ELSE>
<TMPL_INCLUDE NAME="cat-top.inc">
</TMPL_IF>
<TMPL_IF NAME="loggedinuser">
<p align=left>Logged in as: <TMPL_VAR NAME="loggedinuser"> [<a href=/cgi-bin/koha/logout.pl>Log Out</a>]</p>
<TMPL_ELSE>
<p align=left><a href=/cgi-bin/koha/userpage.pl>Log In</a> to Koha</p>
</TMPL_IF>
<center>
<table border=0 cellspacing=0 cellpadding=2 width="90%">
<thead>
<tr
<TMPL_IF NAME="opac">
bgcolor=#99cccc background=/images/background-opac.gif
<TMPL_ELSE>
bgcolor="#ad11ad"
</TMPL_IF>
>
<th>Biblio #</th>
<th>Author</th>
<th>Title</th>
</tr>
<tbody>
<TMPL_LOOP name="result">
<tr>
<td><a href="../MARCdetail.pl?bibid=<TMPL_VAR name="bibid">"><TMPL_VAR name="bibid"></a></td>
<td><TMPL_VAR name="author"></td>
<td><TMPL_VAR name="title"></td>
</tr>
</TMPL_LOOP>
</table>
<TMPL_IF NAME="opac">
<TMPL_INCLUDE NAME="opac-bottom.inc">
<TMPL_ELSE>
<TMPL_INCLUDE NAME="cat-bottom.inc">
</TMPL_IF>