Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tmpl
Paul POULAIN f5195492a5 (cosmetic) reducing subscription renew note textarea
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2008-02-19 20:27:37 -06:00

36 lines
1.6 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Serials Subscription renew #<!-- TMPL_VAR name="subscriptionid" --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!--TMPL_IF Name="renew"-->
Subscription renewed.
<script type="text/javascript">
//<![CDATA[
opener.document.location.reload();
self.close();
//]]>
</script>
<!--TMPL_ELSE-->
<h1>Subscription renewal for <!-- TMPL_VAR name="bibliotitle" --></h1>
<form name="f" action="/cgi-bin/koha/serials/subscription-renew.pl" method="post">
<input type="hidden" name="op" value="renew" />
<input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR name="subscriptionid" -->" />
<p><label for="startdate">Start date</label><input type="text" id="startdate" name="startdate" value="<!-- TMPL_VAR name="startdate" -->" /></p>
<p>Subscription length :</p>
<p><label for="numberlength">Number of num</label><input type="text" id="numberlength" name="numberlength" value="<!-- TMPL_VAR name="numberlength" -->" /></p>
<p><label for="weeklength">Number of weeks</label><input type="text" id="weeklength" name="weeklength" value="<!-- TMPL_VAR name="weeklength" -->" /></p>
<p><label for="monthlength">Number of months</label><input type="text" id="monthlength" name="monthlength" value="<!-- TMPL_VAR name="monthlength" -->" /></p>
<p><label for="note">Note for the librarian that will manage your renewal request</label></p>
<p><textarea name="note" id="note" rows="5" cols="50"></textarea></p>
<input type="submit" value="Request a renewal" class="button" />
</form>
<!-- /TMPL_IF -->
<!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->