Corrections for XHTML compliance, again.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / charges.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; System Administration &rsaquo; Fines</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-admin.inc" -->
7
8 <h2>Calculating Fines</h2>
9 <p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
10 <p>eg 1,7,7 = $1 fine, after 7 days, every 7 days</p>
11 <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>
12 <form action="/cgi-bin/koha/admin/updatecharges.pl" method="post">
13 <div class="table"><table>
14 <tr>
15         <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th><!-- TMPL_VAR NAME="in_title" --></th><!-- /TMPL_LOOP -->
16 </tr>
17 <!-- TMPL_LOOP NAME="row" -->
18         <tr>
19                 <th>
20                         <!-- TMPL_VAR NAME="categorycode" -->
21                 </th>
22                 <!-- TMPL_LOOP NAME="cell" -->
23                         <td bgcolor="<!-- TMPL_VAR name="toggle" -->">
24                                 <input name="<!-- TMPL_VAR name="inputname" -->" value="<!-- TMPL_VAR name="inputvalue" -->" size="6" maxlength="10" />
25                         </td>
26                 <!-- /TMPL_LOOP -->
27         </TR>
28 <!-- /TMPL_LOOP -->
29 </table>
30 <input type="submit" value="Submit Changes" />
31 </form>
32
33 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->