Koha/koha-tmpl/intranet-tmpl/prog/en/serials/viewalerts.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

31 lines
1,017 B
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; View Alerts</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!--TMPL_INCLUDE NAME="menu-serials.inc" -->
<div id="mainbloc">
<h1 class="serial">Alert subscribers for <!-- TMPL_VAR name="bibliotitle" --></h1>
<a href="subscription-detail.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->" class="button serial">subscription</a>
<div class="bloc25">
<!-- TMPL_IF name="alertloop" -->
<table>
<tr>
<th class="serial">Borrower name</th>
<th class="serial">&nbsp;</th>
</tr>
<!-- TMPL_LOOP NAME="alertloop" -->
<tr>
<td><!-- TMPL_VAR name="name" --></td>
<td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber">" class="button serial">View</a></td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<!-- TMPL_ELSE -->
Nobody
<!-- /TMPL_IF -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="serials-bottom.inc" -->