5f4542992a
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.
60 lines
2.1 KiB
Cheetah
60 lines
2.1 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Summary for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
|
|
<h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber" -->">Account Summary: <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</a></h3>
|
|
|
|
<ul><li><!-- TMPL_VAR NAME="streetaddress" --></li><li><!-- TMPL_VAR NAME="city" -->, <!-- TMPL_VAR NAME="zipcode" --></li>
|
|
<li><!-- TMPL_IF NAME="phone" --><!-- TMPL_VAR NAME="phone" --><!-- TMPL_ELSE -->(no phone number on file)<!-- /TMPL_IF --></li>
|
|
<li><!-- TMPL_IF NAME="emailaddress" --><!-- TMPL_VAR NAME="emailaddress" --><!-- TMPL_ELSE -->(no email on file)<!-- /TMPL_IF --></li>
|
|
</ul>
|
|
|
|
<table>
|
|
<caption>Items Checked Out</caption>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Format</th>
|
|
<th>Date Due</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
|
|
<!-- TMPL_loop name="issueloop" -->
|
|
<tr<!-- TMPL_IF name="red" --> class="overdue"</TMPL_IF>>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="title" -->
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->">
|
|
</a>
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="author" --></td>
|
|
<td><!-- TMPL_VAR NAME="itemtype" --></td>
|
|
<td><!-- TMPL_VAR NAME="date_due" --></td>
|
|
<td><!-- TMPL_IF NAME="red" -->Overdue!<!-- TMPL_ELSE --> <!-- /TMPL_IF --></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
|
|
<table>
|
|
<caption>Items on Reserve</caption>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Format</th>
|
|
<th>Requested</th>
|
|
</tr>
|
|
|
|
<!-- TMPL_loop name="reserveloop" -->
|
|
<tr>
|
|
<td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="btitle" --></a></td>
|
|
<td><!-- TMPL_VAR NAME="author" --></td>
|
|
<td><!-- TMPL_VAR NAME="description" --></td>
|
|
<td><!-- TMPL_VAR NAME="reservedate2" --></td>
|
|
</tr>
|
|
<!-- /tmpl_loop -->
|
|
|
|
</table>
|
|
|
|
|
|
<!-- endmenu -->
|
|
|
|
<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
|