Bug 24124: Fix authorities selection in batch deletion tool in Chrome
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / onboarding / onboardingstep4.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Web installer &rsaquo; Create a new item type </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                 <h1 id="logo"><a href="#">Koha</a></h1>
11                 <h2>Web installer &rsaquo; Create a new item type </h2>
12
13                 [% INCLUDE 'onboarding_messages.inc' %]
14
15                 <!--Create a item type screen 1-->
16
17                     <p> Item types are used to group related items. Examples of item types might be books, CDs, or DVDs.</p>
18                     <p> When adding to your institution's catalog you will create an item of a particular item type.</p>
19                     <p> Importantl: 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>
20
21                     <form id="createitemform" method="post" action="onboarding.pl">
22                     <fieldset class="rows">
23                         <input type="hidden" name="step" value="4" />
24                         <input type="hidden" name="op" value="add_validate_itemtype" />
25                         <ol>
26                             <li>
27                                 <label for="itemtype" class="required">Item type code: </label>
28                                 <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 %]" />
29                                 <span class="required">Required</span>
30                             </li>
31
32                             <li>
33                                 <label for="description" class="required">Description: </label>
34                                 <input type="text" name="description" id="description" size="42" value="[% itemtype.description | html %]" class="required" required="required">
35                                 <span class="required">Required</span>
36                             </li>
37                         </ol>
38
39                         <p> To create another item type later and for more settings go to:
40                             <span class="breadcrumbs"> Administration &rsaquo; Item types </span>
41                         </p>
42                         <input type="submit" class="btn btn-primary" value="Submit" />
43                     </fieldset>
44                 </form>
45             </div> <!-- / #onboarding-step4 -->
46         </div> <!-- / .row -->
47     </div><!-- / .container-fluid -->
48
49 [% MACRO jsinclude BLOCK %]
50     [% INCLUDE 'validator-strings.inc' %]
51     [% INCLUDE 'installer-strings.inc' %]
52     <script src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script>
53 [% END %]
54
55 [% INCLUDE 'installer-intranet-bottom.inc' %]