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