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