Change to the template to display a link to add a review
[koha.git] / koha-tmpl / opac-tmpl / npl / en / opac-readingrecord.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 <!-- TMPL_INCLUDE name="masthead-user.inc" -->
4 <!-- TMPL_INCLUDE name="navigation.inc" -->
5
6 <div id="main">
7 <h3>Reading History of <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h3>
8
9 <!-- TMPL_UNLESS NAME="count" -->
10 You have never borrowed anything from the library.
11 <!-- TMPL_ELSE -->
12 <table>
13 <!-- TMPL_IF NAME="showfulllink" -->
14 <tr><td colspan="4">Showing All Items | <a href="opac-readingrecord.pl?limit=">Show Last 50 Items Only</a></td></tr><!-- TMPL_ELSE -->
15 <tr><td colspan="4">Showing Last 50 Items | <a href="opac-readingrecord.pl?limit=full">Show All Items</a></td></tr>
16 <!-- /TMPL_IF --><tr>
17 <tr><th><!-- TMPL_UNLESS NAME="orderbytitle" --><a href="/cgi-bin/koha/opac-readingrecord.pl?order=title">Title</a><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_UNLESS NAME="orderbyauthor"--></th>
18 <th><!-- TMPL_UNLESS --><a href="/cgi-bin/koha/opac-readingrecord.pl?order=author">Author</a><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_UNLESS --></th>
19 <th><!-- TMPL_UNLESS NAME="orderbydate" --><a href="/cgi-bin/koha/opac-readingrecord.pl">Date</a><!-- TMPL_ELSE -->Date<!-- /TMPL_UNLESS --></th></tr>
20
21 <!-- TMPL_LOOP NAME="READING_RECORD" -->
22
23 <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
24 <td><a href="/cgi-bin/koha/opac-detail.pl?bib=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a></td>
25 <td><!-- TMPL_VAR NAME="author" --></td>
26 <td><!-- TMPL_IF NAME="returndate" --><!-- TMPL_VAR NAME="returndate" --><!-- TMPL_ELSE --><em>(Checked out)</em><!-- /TMPL_IF --></td>
27 <td><a href="/cgi-bin/koha/opac-review.pl?biblionumber=<!--TMPL_VAR NAME="biblionumber"-->">Review</a></td>
28 </tr>
29
30 <!-- /TMPL_LOOP -->
31 </table>
32
33 <!-- /TMPL_UNLESS -->
34
35 </div>
36 </body>
37 </html>
38
39