minor template changes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / admin / finesrules.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; System Administration &rsaquo; Issuing Rules</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         <h1>Defining <!-- TMPL_IF NAME="branch" -->fining rules for <!-- TMPL_VAR NAME="branch" --><!-- TMPL_ELSE -->default fining rules<!-- /TMPL_IF --></h1>
9                 
10         <div class="help">
11                 <h3>HINT for fines</h3>
12                 <p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
13                 <p>eg 1,7,7</span> = 1 [USD,EUR,etc] fine after 7 days, every 7 days</p>
14                 <p>Fines are calculated by the fines2.pl script, located in misc directory.  Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night</p>
15         </div>
16         <div class="help">
17                 <h3>Default values</h3>
18                 <p> If a cell is not filled, the 1st of the following value is searched :</p>
19                 <ul>
20                         <li>same branch and same borrower category, itemtype *</li>
21                         <li>same branch and same itemtype, borrower category *</li>
22                         <li>same itemtype and borrower category, branch *</li>
23                         <li>branch * and itemtype *, same borrower category</li>
24                         <li>branch * and borrower category *, same itemtype </li>
25                         <li>branch * and borrower category *, itemtype *</li>
26                 </ul>
27         
28                 <form method="post" action="/cgi-bin/koha/admin/finesrules.pl">
29                 <label for="branch">Select a branch :</label>
30                         <select id="branch" name="branch">
31                                 <option value="">Default</option>
32                         <!-- TMPL_LOOP NAME="branchloop" -->
33                                 <option value="<!-- TMPL_VAR NAME="value" -->"<!-- TMPL_IF NAME="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR NAME="branchname" --></option><!-- /TMPL_LOOP --></select>
34                         <input type="submit" value="Select" />
35                 </form>
36                 <form method="post" action="/cgi-bin/koha/admin/finesrules.pl">
37                         <input type="hidden" name="op" value="save" />
38                         <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
39                         
40                         <table>
41                         <caption>Defining fines rules for <!-- TMPL_VAR NAME="branch" --></caption>
42                         <tr>
43                                 <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th scope="col"><!-- TMPL_VAR NAME="in_title" --></th><!-- /TMPL_LOOP -->
44                         </tr>
45                         <!-- TMPL_LOOP NAME="row" -->
46                                 <tr>
47                                         <th><!-- TMPL_VAR NAME="categorycode" --></th>
48                                         <!-- TMPL_LOOP NAME="cell" -->
49                                                 <td<!-- TMPL_IF NAME="toggle" --> class="highlight"<!-- /TMPL_IF -->>
50                                                         <input name="<!-- TMPL_VAR NAME="finesname" -->" value="<!-- TMPL_VAR NAME="finesvalue" -->" size="6" maxlength="10" />
51                                                 </td>
52                                         <!-- /TMPL_LOOP -->
53                                 </tr>
54                         <!-- /TMPL_LOOP -->
55                         </table>
56                         
57                         <input type="submit" value="Save Changes" />
58                 </form>
59
60 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->