adding sample data and improving nomenclature
[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="doc" class="yui-t7">
12
13 <div id="bd">
14     <div id="yui-main">
15     <div class="yui-g">
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. For example: 21,5 enables 5 issues for 21 days</p>
21     </div>
22
23     <div class="help">
24         <h3>Default values</h3>
25         <ul>
26             <li>If a cell is not filled, the value in the default column (top right) is used</li>
27             <li>If a total is filled (last line), the patron must fit both itemtype and total rule</li>
28             <li>If a rule is filled for a given branch, it is used, otherwise, it's the rule of the "default" branch</li>
29                 </ul>
30     </div>
31         <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
32         <label for="branch">Select a library :</label>
33             <select id="branch" name="branch">
34                 <option value="">Default</option>
35                 <!-- TMPL_LOOP NAME="branchloop" -->
36                     <!-- TMPL_IF NAME="selected" -->
37                         <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
38                     <!-- TMPL_ELSE -->
39                         <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
40                     <!-- /TMPL_IF -->
41                 <!-- /TMPL_LOOP -->
42             </select>
43             <input type="submit" value="Select" />
44         </form>
45         <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
46             <input type="hidden" name="op" value="save" />
47             <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
48             
49             <table>
50                 <caption>Defining circulation rules for <!-- TMPL_VAR NAME="branch" --></caption>
51                 <tr>
52                     <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th scope="col"><!-- TMPL_IF EXPR="in_title eq '*'" -->Default<!-- TMPL_ELSE --><!-- TMPL_VAR NAME="in_title" --><!-- /TMPL_IF --></th><!-- /TMPL_LOOP -->
53                 </tr>
54                 <!-- TMPL_LOOP NAME="row" -->
55                     <tr>
56                         <th scope="row"><!-- TMPL_IF name="total" -->Total <!-- TMPL_ELSE --><!-- TMPL_VAR NAME="categorycode" --><!-- /TMPL_IF --></th>
57                         <!-- TMPL_LOOP NAME="cell" -->
58                             <!-- TMPL_IF NAME="toggle" -->
59                                 <td class="highlight">
60                             <!-- TMPL_ELSE -->
61                                 <td>
62                             <!-- /TMPL_IF -->
63                                 <input name="<!-- TMPL_VAR NAME="issuingname" -->" value="<!-- TMPL_VAR NAME="issuingvalue" -->" size="6" maxlength="10" />
64                             </td>
65                         <!-- /TMPL_LOOP -->
66                     </tr>
67                 <!-- /TMPL_LOOP -->
68             </table>
69             <input type="submit" value="Save Changes" />
70         </form>
71
72 </div>
73 </div>
74 </div>
75 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->