Put Dewey back in template file
[koha.git] / html-template / searchresults.tmpl
1 <html>
2 <head><title>Test Template</title>
3 </head>
4 <body>
5 Testing <TMPL_VAR NAME=NAME>
6 <p>
7 Pet's Name: <TMPL_VAR NAME=PET>
8 <p>
9 <hr>
10 <table border=1>
11 <tr><th>Barcode</th><th>Title</th><th>Author</th><th>Dewey</th></tr>
12 <TMPL_LOOP NAME=SEARCH_RESULTS>
13   <tr>
14   <td> <TMPL_VAR NAME=BARCODE> </td>
15   <td> <TMPL_VAR NAME=TITLE> </td>
16   <td> <TMPL_VAR NAME=AUTHOR> </td>
17   <td> <TMPL_VAR NAME=DEWEY> </td>
18   </tr>
19 </TMPL_LOOP>
20 </table>
21 <hr>
22 </body>
23 </html>