Koha/koha-tmpl/intranet-tmpl/prog/en/members/moremember-receipt.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

44 lines
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Print Receipt for <!-- TMPL_VAR NAME="cardnumber" --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<h3>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/catalogue/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&amp;biblionumber=<!-- 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/catalogue/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->"><!-- TMPL_VAR NAME="title" --></a></td>
</tr>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
</table>
<!-- endmenu -->
<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->