Bug 14364: Allow automatically canceled expired waiting holds to fill the next hold
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / onboarding / onboardingstep4.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Create a new item type &rsaquo; Web installer &rsaquo; Koha</title>
3 [% INCLUDE 'installer-doc-head-close.inc' %]
4 </head>
5
6 <body id="installer" class="installer">
7     <div class="container-fluid">
8         <div class="row">
9             <div id="onboarding-step4" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2">
10                 <div id="logo"><a href="#">Koha</a></div>
11                 <h1>Web installer &rsaquo; Create a new item type</h1>
12
13                 [% INCLUDE 'onboarding_messages.inc' %]
14
15                 <div id="steps">
16                     <ol>
17                         <li class="complete"><i class="fa fa-check-square-o" aria-hidden="true"></i> Installation</li>
18                         <li class="current open"><i class="fa fa-square-o" aria-hidden="true"></i> Onboarding
19                             <ol>
20                                 <li class="complete"><i class="fa fa-check-square-o" aria-hidden="true"></i> Create a library</li>
21                                 <li class="complete"><i class="fa fa-check-square-o" aria-hidden="true"></i> Create a patron category</li>
22                                 <li class="complete"><i class="fa fa-check-square-o" aria-hidden="true"></i> Create Koha administrator patron</li>
23                                 <li class="current open"><i class="fa fa-square-o" aria-hidden="true"></i> Create a new item type</li>
24                                 <li class="open"><i class="fa fa-square-o" aria-hidden="true"></i> Create a new circulation rule</li>
25                             </ol>
26                         </li>
27                     </ol>
28                 </div>
29
30                 <!--Create a item type screen 1-->
31
32                     <p> Item types are used to group related items. Examples of item types might be books, CDs, or DVDs.</p>
33                     <p> When adding to your institution's catalog you will create an item of a particular item type.</p>
34                     <p> Important: Item types are what you apply circulation rules to. Circulation rules govern how your institution will lend its items: Checkout length, renewal policy, hold policy, etc. For example a circulation rule applied to the DVD item type may enforce a payment of $1.00 for checking out any DVD.</p>
35
36                     <form id="createitemform" method="post" action="onboarding.pl">
37                     <fieldset class="rows">
38                         <input type="hidden" name="step" value="4" />
39                         <input type="hidden" name="op" value="add_validate_itemtype" />
40                         <ol>
41                             <li>
42                                 <label for="itemtype" class="required">Item type code: </label>
43                                 <input type="text" name="itemtype" pattern="[0-9A-Za-z]{1,10}" id="itemtype" size="10" maxlength="10"  class="required" required="required" value="[% itemtype.itemtype | html %]" />
44                                 <span class="required">Required</span>
45                             </li>
46
47                             <li>
48                                 <label for="description" class="required">Description: </label>
49                                 <input type="text" name="description" id="description" size="42" value="[% itemtype.description | html %]" class="required" required="required">
50                                 <span class="required">Required</span>
51                             </li>
52                         </ol>
53
54                         <p> To create another item type later and for more settings go to:
55                             <span class="breadcrumbs"> Administration &rsaquo; Item types </span>
56                         </p>
57                         <input type="submit" class="btn btn-primary" value="Submit" />
58                     </fieldset>
59                 </form>
60             </div> <!-- / #onboarding-step4 -->
61         </div> <!-- / .row -->
62     </div><!-- / .container-fluid -->
63
64 [% MACRO jsinclude BLOCK %]
65     [% INCLUDE 'validator-strings.inc' %]
66     [% INCLUDE 'installer-strings.inc' %]
67     <script src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script>
68 [% END %]
69
70 [% INCLUDE 'installer-intranet-bottom.inc' %]