10319b07c779bd6148d820c8334af039e1a07a7c
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / issuingrules.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; Issuing Rules</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7
8 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;  Issuing Rules</div>
9
10 <div id="doc3" class="yui-t2">
11    
12    <div id="bd">
13         <div id="yui-main">
14         <div class="yui-b">
15
16         <h1>Defining <!-- TMPL_IF NAME="branch" -->issuing rules for <!-- TMPL_VAR NAME="branch" --><!-- TMPL_ELSE -->default issuing rules<!-- /TMPL_IF --></h1>
17         <div class="help">
18                 <h3>HINT for issues</h3>
19                 <p>Each box needs to be filled in with issuelength,maxissues</p>
20                 <p>eq 21,5 enables 5 issues for 21 days</p>
21         </div>
22
23         <div class="help">
24                 <h3>Default values</h3>
25                 <p> If a cell is not filled, the 1st of the following value is searched :</p>
26                 <ul>
27                         <li>same library and same patron category, itemtype *</li>
28                         <li>same library and same itemtype, patron category *</li>
29                         <li>same itemtype and patron category, library *</li>
30                         <li>everywhere</li>
31                         <li>If nothing is set, default is 21,5 (hardcoded)</li>
32                 </ul>
33         </div>
34                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
35                 <label for="branch">Select a library :</label>
36                         <select id="branch" name="branch">
37                                 <option value="">Default</option>
38                         <!-- TMPL_LOOP NAME="branchloop" -->
39                                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
40                                 <!-- TMPL_ELSE -->
41                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
42                                 <!-- /TMPL_IF -->
43                         <!-- /TMPL_LOOP --></select>
44                         <input type="submit" value="Select" />
45                 </form>
46                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
47                         <input type="hidden" name="op" value="save" />
48                         <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
49                         
50                         <table>
51                         <caption>Defining circulation rules for <!-- TMPL_VAR NAME="branch" --></caption>
52                         <tr>
53                                 <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th scope="col"><!-- TMPL_VAR NAME="in_title" --></th><!-- /TMPL_LOOP -->
54                         </tr>
55                         <!-- TMPL_LOOP NAME="row" -->
56                                 <tr>
57                                         <th><!-- TMPL_VAR NAME="categorycode" --></th>
58                                         <!-- TMPL_LOOP NAME="cell" -->
59                                                 <!-- TMPL_IF NAME="toggle" -->
60    <td class="highlight">
61 <!-- TMPL_ELSE -->
62    <td>
63 <!-- /TMPL_IF -->
64                                                         <input name="<!-- TMPL_VAR NAME="issuingname" -->" value="<!-- TMPL_VAR NAME="issuingvalue" -->" size="6" maxlength="10" />
65                                                 </td>
66                                         <!-- /TMPL_LOOP -->
67                                 </tr>
68                         <!-- /TMPL_LOOP -->
69                         </table>
70                         
71                         <input type="submit" value="Save Changes" />
72                 </form>
73
74 </div>
75 </div>
76 <div class="yui-b">
77 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
78 </div>
79 </div>
80 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->