Koha/html-template/cmsdsearchresults.tmpl
tonnesen f1afbb56f2 Changes:
- templates are expected to be found in
    INCLUDESDIR/templates/catalogue/searchresults/default.tmpl
 - Works with default Search.pm from cvs
2002-05-13 23:05:45 +00:00

29 lines
950 B
Cheetah

<html>
<head><title>Search Results</title>
</head>
<body>
<TMPL_INCLUDE NAME="searchheader.tmpl">
<table border=0 cellspacing=0 cellpadding=0>
<tr bgcolor=#ccccff><th>Title</th><th>Author</th><th>Dewey</th></tr>
<TMPL_LOOP NAME=SEARCH_RESULTS>
<tr>
<td><TMPL_VAR NAME=title></td>
<td><TMPL_VAR NAME=author></td>
<td align=right><TMPL_VAR NAME=dewey></td>
</tr>
</TMPL_LOOP>
<tr><td colspan=3 bgcolor=#ccccff>
<table border=0 cellpadding=0 cellspacing=0 width=100%>
<tr><td align=left>
<a href=search.pl?template=<TMPL_VAR NAME="template">&startfrom=<TMPL_VAR NAME="prevstartfrom">>Previous Records</a>
</td><td align=right>
<a href=search.pl?template=<TMPL_VAR NAME="template">&startfrom=<TMPL_VAR NAME="nextstartfrom">>Next Records</a>
</td></tr>
</table>
</td></tr>
</table>
<br>
Results <TMPL_VAR NAME="startfrom"> through <TMPL_VAR NAME="endat"> of <TMPL_VAR NAME="numrecords"> records.
<hr>
</body>
</html>