Bug 17855: Simplify the onboarding tool
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / onboarding / onboardingstep4.tt
1 <!-- includes for creating item type-->
2 [% INCLUDE 'doc-head-open.inc' %]
3 [% INCLUDE 'installer-doc-head-close.inc' %]
4 <head>
5     <title>Create item type</title>
6 </head>
7 <div>
8     <h1 id="logo"><img alt="Koha" src="[% interface %]/[% theme %]/img/koha.org-logo.gif"/> Welcome to Koha</h1>
9 </div>
10
11 [% INCLUDE 'onboarding_messages.inc' %]
12
13 <!--Create a item type screen 1-->
14 <h1 align="center"> Create a new Item type </h1>
15 <p> Item types are used to group related items. Examples of item types are books, cds, and DVDs. <br><br> When adding to your institutions catalogue you will create an item of a particular item type. <br><br> Importantly item types are what you apply     circulation rules to. Circulation rules govern how your institution will lend its items, for example a circulation rule applied to the DVD item type may enforce a payment of $1.00 for borrowing any DVD.</p>
16 <form name="createitemform" method="post" action="onboarding.pl">
17     <fieldset class="rows">
18         <input type="hidden" name="step" value="4"/>
19         <input type="hidden" name="op" value="add_validate_itemtype" />
20         <ol>
21             <li>
22                 <label for="itemtype" class="required">Item type code: </label>
23                 <input type="text" name="itemtype" pattern="[0-9A-Za-z]{1,10}" title="Please enter up to 10 letters and/or numbers" id="itemtype" size="10" maxlength="10"  class="required" required="required" value="[% itemtype.itemtype |html %]" />
24                 <span class="required">Required</span>
25             </li>
26
27             <li>
28                 <label for="description" class="required">Description: </label>
29                 <input type="text" name="description" id="description" title="Please only enter letters and/or numbers into this item type description" size="42" value="[% itemtype.description |html %]" class="required" required="required">
30                 <span class="required">Required</span>
31             </li>
32         </ol>
33     <br>
34     <p> To create another item type later and for more settings <br>
35             go to: <br>
36             More -> Administration -> Item types <br>
37     </p>
38
39     <input type="submit" class="action" value="Submit"/>
40 </fieldset>
41 </form>