Added ability to switch between two templates. One template shows
[koha.git] / html-template / cmsdsearchresults.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>Notes</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=notes> </td>
13   </tr>
14 </TMPL_LOOP>
15 </table>
16 <hr>
17 </body>
18 </html>