Koha/koha-tmpl/intranet-tmpl/npl/en/members/moremember-receipt.tmpl
oleonard ac234c5ecb Adding two print versions of the member details screen, and links to those version in moremember
- moremember-print.tmpl is a full-page view with information about the patron, issues, and reserves
- moremember-receipt.tmpl is a brief view with information about issues, designed to be appropriate for a slip printer.

Each version is accessed by passing a new parameter to moremember.pl, print=page or print=slip.
2005-02-10 19:28:02 +00:00

44 lines
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Print Receipt for <!-- TMPL_VAR NAME="cardnumber" --><!-- TMPL_INCLUDE NAME="doc-head-close-receipt.inc" -->
<!-- main site -->
<div id="main">
<h3>Athens County Library</h3>
<!-- TMPL_IF NAME="branchname" --><!-- TMPL_VAR NAME="branchname" --><br><!-- /TMPL_IF -->
Issued To <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber">"><!-- TMPL_VAR NAME="cardnumber" --></a><br>
<!-- TMPL_VAR NAME="todaysdate" --><br>
<table>
<caption>Issues</caption>
<tr>
<th>Date Due</th>
<th>Title</th>
</tr>
<!-- TMPL_loop name="issueloop" -->
<!-- TMPL_IF name="red" --><!-- TMPL_ELSE -->
<tr>
<td><!-- TMPL_VAR NAME="date_due" --></td>
<td><a href="/cgi-bin/koha/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&amp;bib=<!-- TMPL_VAR NAME="biblionumber" -->&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->"><!-- TMPL_VAR NAME="title" --></a></td>
</tr>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
</table>
<table>
<caption>Overdues</caption>
<tr>
<th>Date Due</th>
<th>Title</th>
</tr>
<!-- TMPL_LOOP NAME="issueloop" -->
<!-- TMPL_IF NAME="red" --><tr>
<td><!-- TMPL_VAR NAME="date_due" --></td>
<td><a href="/cgi-bin/koha/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&amp;bib=<!-- TMPL_VAR NAME="biblionumber" -->&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->"><!-- TMPL_VAR NAME="title" --></a></td>
</tr>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
</table>
</div>
<!-- endmenu -->
<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->