Still playing. Added a "next record" link
[koha.git] / html-template / searchresults.tmpl
1 <html>
2 <head><title>Search Results</title>
3 </head>
4 <body>
5 <TMPL_INCLUDE NAME="searchheader.tmpl">
6 <table border=1>
7 <tr><th>Title</th><th>Author</th><th>Biblionumber</th></tr>
8 <TMPL_LOOP NAME=SEARCH_RESULTS>
9   <tr>
10   <td> <TMPL_VAR NAME=title> </td>
11   <td> <TMPL_VAR NAME=author> </td>
12   <td> <TMPL_VAR NAME=biblionumber> </td>
13   </tr>
14 </TMPL_LOOP>
15 <tr><td colspan=3><a href=search.pl?template=<TMPL_VAR NAME="template">&startfrom=<TMPL_VAR NAME="startfrom">>Next Records</a></td></tr>
16 </table>
17 <hr>
18 </body>
19 </html>