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

33 lines
1.3 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; System Administration &rsaquo; Fines</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-admin.inc" -->
<h2>Calculating Fines</h2>
<p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
<p>eg 1,7,7 = $1 fine, after 7 days, every 7 days</p>
<p>Note : fines are calculated by the fines2.pl</span> script, located in misc</span> directory. Ask your administrator to put this script in crontab (after midnight) to have fines calculated every night</p>
<form action="/cgi-bin/koha/admin/updatecharges.pl" method="post">
<div class="table"><table>
<tr>
<th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th><!-- TMPL_VAR NAME="in_title" --></th><!-- /TMPL_LOOP -->
</tr>
<!-- TMPL_LOOP NAME="row" -->
<tr>
<th>
<!-- TMPL_VAR NAME="categorycode" -->
</th>
<!-- TMPL_LOOP NAME="cell" -->
<td bgcolor="<!-- TMPL_VAR name="toggle" -->">
<input name="<!-- TMPL_VAR name="inputname" -->" value="<!-- TMPL_VAR name="inputvalue" -->" size="6" maxlength="10">
</td>
<!-- /TMPL_LOOP -->
</TR>
<!-- /TMPL_LOOP -->
</table>
<input type="submit" value="Submit Changes">
</form>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->