Corrections for XHTML compliance, again.
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / issuingrules.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" -->issuing rules for <!-- TMPL_VAR NAME="branch" --><!-- TMPL_ELSE -->default issuing rules<!-- /TMPL_IF --></h1>
9         <div class="help">
10                 <h3>HINT for issues</h3>
11                 <p>Each box needs to be filled in with issuelength,maxissues</p>
12                 <p>eq 21,5</span> enables 5 issues for 21 days</p>
13         </div>
14
15         <div class="help">
16                 <h3>Default values</h3>
17                 <p> If a cell is not filled, the 1st of the following value is searched :</p>
18                 <ul>
19                         <li>same library and same patron category, itemtype *</li>
20                         <li>same library and same itemtype, patron category *</li>
21                         <li>same itemtype and patron category, library *</li>
22                         <li>everywhere</li>
23                         <li>If nothing is set, default is 21,5 (hardcoded)</li>
24                 </ul>
25         </div>
26                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
27                 <label for="branch">Select a library :</label>
28                         <select id="branch" name="branch">
29                                 <option value="">Default</option>
30                         <!-- TMPL_LOOP NAME="branchloop" -->
31                                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
32                                 <!-- TMPL_ELSE -->
33                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
34                                 <!-- /TMPL_IF -->
35                         <!-- /TMPL_LOOP --></select>
36                         <input type="submit" value="Select" />
37                 </form>
38                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
39                         <input type="hidden" name="op" value="save" />
40                         <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
41                         
42                         <table>
43                         <caption>Defining circulation rules for <!-- TMPL_VAR NAME="branch" --></caption>
44                         <tr>
45                                 <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th scope="col"><!-- TMPL_VAR NAME="in_title" --></th><!-- /TMPL_LOOP -->
46                         </tr>
47                         <!-- TMPL_LOOP NAME="row" -->
48                                 <tr>
49                                         <th><!-- TMPL_VAR NAME="categorycode" --></th>
50                                         <!-- TMPL_LOOP NAME="cell" -->
51                                                 <!-- TMPL_IF NAME="toggle" -->
52    <td class="highlight">
53 <!-- TMPL_ELSE -->
54    <td>
55 <!-- /TMPL_IF -->
56                                                         <input name="<!-- TMPL_VAR NAME="issuingname" -->" value="<!-- TMPL_VAR NAME="issuingvalue" -->" size="6" maxlength="10" />
57                                                 </td>
58                                         <!-- /TMPL_LOOP -->
59                                 </tr>
60                         <!-- /TMPL_LOOP -->
61                         </table>
62                         
63                         <input type="submit" value="Save Changes" />
64                 </form>
65
66 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->