fixing some display bugs (itemtype not properly returned and a html table bug that...
[koha.git] / koha-tmpl / opac-tmpl / prog / en / opac-review.tmpl
1 <!-- TMPL_INCLUDE name="doc-head-open.inc" --><!-- TMPL_VAR NAME="LibraryName" --> Catalog -- Library Home for  <!-- TMPL_LOOP name="BORROWER_INFO" --><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR name="surname" --><!-- /TMPL_LOOP -->
2 <!-- TMPL_INCLUDE name="doc-head-close.inc" -->
3
4 <div> <!-- main -->
5
6 <h3> Review of: <!--TMPL_VAR NAME="title" --></h3>
7
8 <form action="/cgi-bin/koha/opac-review.pl" method="POST" onsubmit="return closeWindow();"> 
9     <input type="hidden" name="biblionumber" value="<!--TMPL_VAR NAME="biblionumber"-->">
10     <input type="hidden" name="type" value="<TMPL_VAR NAME="type">">
11
12     <table>
13     <tr>
14         <th>
15             Review
16         </th>
17     </tr>
18     <tr><td>
19             <textarea name="review" cols=60 rows=8><!--TMPL_VAR NAME="review"--></textarea>
20     </td></tr>
21     <tr><td>
22             <input type="submit" value="Send & close this window">
23     </td></tr>
24     </table>
25 </form>
26     <p>
27     Note : Your review will be accepted or rejected by a librarian before.
28     </p>
29
30 <script type="text/javascript" language="javascript">
31     function closeWindow() {
32         window.close();
33         return true;
34     }
35 </script>
36
37 <!-- TMPL_INCLUDE NAME="opac-bottom.inc"-->