Koha/html-template/cmsdsearchresults.tmpl
tonnesen 7821d507a3 Added ability to switch between two templates. One template shows
biblionumber, the other template shows notes, in the third column.

My thinking is that for every template, the scripts can search for a local
version of the template before using the default template.
2002-05-10 17:41:05 +00:00

18 lines
364 B
Cheetah

<html>
<head><title>Search Results</title>
</head>
<body>
<TMPL_INCLUDE NAME="searchheader.tmpl">
<table border=1>
<tr><th>Title</th><th>Author</th><th>Notes</th></tr>
<TMPL_LOOP NAME=SEARCH_RESULTS>
<tr>
<td> <TMPL_VAR NAME=title> </td>
<td> <TMPL_VAR NAME=author> </td>
<td> <TMPL_VAR NAME=notes> </td>
</tr>
</TMPL_LOOP>
</table>
<hr>
</body>
</html>