kohabug 2507 Fixing labels search to indicate keyword rather than title search
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / smart-rules.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
5 <script type="text/javascript">
6 //<![CDATA[
7 $(document).ready(function() {
8         $('#selectlibrary').find("input:submit").hide();
9         $('#branch').change(function() {
10                 $('#selectlibrary').submit();
11         });
12 });
13 //]]>
14 </script>
15
16 </head>
17 <body>
18 <!-- TMPL_INCLUDE NAME="header.inc" -->
19 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
20
21 <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>
22
23 <div id="doc3" class="yui-t1">
24
25 <div id="bd">
26     <div id="yui-main">
27     <div class="yui-b">
28     <h1 class="parameters">
29         <!-- TMPL_IF NAME="humanbranch" -->
30             Defining issuing rules for "<!-- TMPL_VAR NAME="humanbranch" -->"
31         <!-- TMPL_ELSE -->
32             Defining default issuing rules
33         <!-- /TMPL_IF -->
34     </h1>
35     <div class="help">
36         <p>The rules are applied from most specific to less specific, using the first found in this order:</p>
37         <ul>
38             <li>same library, same patron type, same item type</li>
39             <li>same library, same patron type, default item type</li>
40             <li>same library, default patron type, same item type</li>
41             <li>same library, default patron type, default item type</li>
42             <li>default library, same patron type, same item type</li>
43             <li>default library, same patron type, default item type</li>
44             <li>default library, default patron type, same item type</li>
45             <li>default library, default patron type, default item type</li>
46         </ul>
47         <p>To modify a rule, create a new one with the same patron type and item type.</p>
48     </div>
49     <div id="bloc100">
50         <form method="get" action="/cgi-bin/koha/admin/smart-rules.pl" id="selectlibrary">
51         Select a library :
52             <select name="branch" id="branch" style="width:20em;">
53                 <option value="*">Default</option>
54             <!-- TMPL_LOOP NAME="branchloop" -->
55                                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option><!-- TMPL_ELSE --><option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option><!-- /TMPL_IF -->
56             <!-- /TMPL_LOOP -->
57             </select>
58         </form>
59                 <br />
60                 <br />
61         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
62             <input type="hidden" name="op" value="add" />
63             <table>
64             <tr>
65                 <th>Patron Category</th>
66                 <th>Item Type</th>
67                 <th>Fine Amount</th>
68                 <th>Fine Grace Period</th>
69                 <th>Fine Charging Interval</th>
70                 <th>Current Checkouts Allowed</th>
71                 <th>Loan Period</th><th>&nbsp;</th>
72             </tr>
73             <!-- TMPL_LOOP NAME="rules" -->
74                 <tr>
75                     <td><!-- TMPL_IF NAME="default_humancategorycode" -->
76                             <em>Default</em>
77                         <!-- TMPL_ELSE -->
78                             <!-- TMPL_VAR NAME="humancategorycode" -->
79                         <!-- /TMPL_IF -->
80                     </td>
81                     <td><!-- TMPL_IF NAME="default_humanitemtype" -->
82                             <em>Default</em>
83                         <!-- TMPL_ELSE -->
84                             <!-- TMPL_VAR NAME="humanitemtype" -->
85                         <!-- /TMPL_IF -->
86                     </td>
87                     <td>$<!-- TMPL_VAR NAME="fine" --></td>
88                     <td><!-- TMPL_IF NAME="firstremind" --><!-- TMPL_VAR NAME="firstremind" --> day(s)<!-- /TMPL_IF --></td>
89                     <td><!-- TMPL_IF NAME="chargeperiod" --><!-- TMPL_VAR NAME="chargeperiod" --> day(s)<!-- /TMPL_IF --></td>
90                     <td><!-- TMPL_IF NAME="unlimited_maxissueqty" -->
91                             Unlimited
92                         <!-- TMPL_ELSE -->
93                             <!-- TMPL_VAR NAME="maxissueqty" -->
94                         <!-- /TMPL_IF -->
95                     </td>
96                     <td><!-- TMPL_IF NAME="issuelength" --><!-- TMPL_VAR NAME="issuelength" --> day(s)<!-- /TMPL_IF --></td>
97                     <td>
98                         <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete&amp;itemtype=<!-- TMPL_VAR NAME="itemtype" -->&amp;categorycode=<!-- TMPL_VAR NAME="categorycode" -->&amp;branch=<!-- TMPL_VAR NAME="branch" -->">Delete</a>
99                     </td>
100                 </tr>
101             <!-- /TMPL_LOOP -->
102                 <tr>
103                     <td>
104                         <select name="categorycode">
105                             <option value="*">Default</option>
106                         <!-- TMPL_LOOP NAME="categoryloop" -->
107                             <option value="<!-- TMPL_VAR NAME="categorycode" -->"><!-- TMPL_VAR NAME="description" --></option>
108                         <!-- /TMPL_LOOP -->
109                         </select>
110                     </td>
111                     <td>
112                         <select name="itemtype" style="width:13em;">
113                             <option value="*">Default</option>
114                         <!-- TMPL_LOOP NAME="itemtypeloop" -->
115                             <option value="<!-- TMPL_VAR NAME="itemtype" -->"><!-- TMPL_VAR NAME="description" --></option>
116                         <!-- /TMPL_LOOP -->
117                         </select>
118                     </td>
119                     <td>$<input name="fine" size="4" /></td>
120                     <td><input name="firstremind" size="2" /> day(s)</td>
121                     <td><input name="chargeperiod" size="2" /> day(s)</td>
122                     <td><input name="maxissueqty" size="3" /></td>
123                     <td><input name="issuelength" size="3" /> day(s)</td>
124                     <td><input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->"/><input type="submit" value="Add" class="submit" /></td>
125                 </tr>
126             </table>
127         </form>
128     </div>
129     <!-- TMPL_IF NAME="show_branch_cat_rule_form" -->
130     <div class="help">
131         <p>For this library, you can specify the maximum number of loans that 
132             a patron of a given category can make, regardless of the item type.
133         </p>
134         <p>If the total amount loanable for a given patron category is left blank,
135            no limit applies, except possibly for a limit you define for a specific item type.
136         </p>
137     </div>
138     <div>
139         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
140             <input type="hidden" name="op" value="add-branch-cat" />
141             <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->"/>
142             <table>
143                 <tr>
144                     <th>Patron Category</th>
145                     <th>Total Current Checkouts Allowed</th>
146                     <th>&nbsp;</th>
147                 </tr>
148                 <!-- TMPL_LOOP NAME="branch_cat_rule_loop" -->
149                     <tr>
150                         <td><!-- TMPL_IF NAME="default_humancategorycode" -->
151                                 <em>Default</em>
152                             <!-- TMPL_ELSE -->
153                                 <!-- TMPL_VAR NAME="humancategorycode" -->
154                             <!-- /TMPL_IF -->
155                         </td>
156                         <td><!-- TMPL_IF NAME="unlimited_maxissueqty" -->
157                                 Unlimited
158                             <!-- TMPL_ELSE -->
159                                 <!-- TMPL_VAR NAME="maxissueqty" -->
160                             <!-- /TMPL_IF -->
161                         </td>
162                         <td>
163                             <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-cat&amp;categorycode=<!-- TMPL_VAR NAME="categorycode" -->&amp;branch=<!-- TMPL_VAR NAME="branch" -->">Delete</a>
164                         </td>
165                     </tr>
166                 <!-- /TMPL_LOOP -->
167                 <tr>
168                     <td>
169                         <select name="categorycode">
170                             <option value="*">Default</option>
171                         <!-- TMPL_LOOP NAME="categoryloop" -->
172                             <option value="<!-- TMPL_VAR NAME="categorycode" -->"><!-- TMPL_VAR NAME="description" --></option>
173                         <!-- /TMPL_LOOP -->
174                         </select>
175                     </td>
176                     <td><input name="maxissueqty" size="3" /></td>
177                     <td><input type="submit" value="Add" class="submit" /></td>
178                 </tr>
179             </table>
180         </form>
181     </div>
182     <!-- /TMPL_IF -->
183 </div>
184
185 </div>
186 <div class="yui-b">
187 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
188 </div>
189 </div>
190 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->