Bug 21454: Remove html filter for Price filtered variables
[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 [% INCLUDE 'validator-strings.inc' %]
5 [% INCLUDE 'installer-strings.inc' %]
6 <script type="text/javascript" src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script>
7 </head>
8
9 <body id="installer" class="installer">
10     <div class="container-fluid">
11         <div class="row">
12             <div id="onboarding-step4" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2">
13                 <h1 id="logo"><a href="#">Koha</a></h1>
14                 <h2>Web installer &rsaquo; Create a new item type </h2>
15
16                 [% INCLUDE 'onboarding_messages.inc' %]
17
18                 <!--Create a item type screen 1-->
19
20                     <p> Item types are used to group related items. Examples of item types might be books, CDs, or DVDs.</p>
21                     <p> When adding to your institution's catalog you will create an item of a particular item type.</p>
22                     <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>
23
24                     <form id="createitemform" method="post" action="onboarding.pl">
25                     <fieldset class="rows">
26                         <input type="hidden" name="step" value="4" />
27                         <input type="hidden" name="op" value="add_validate_itemtype" />
28                         <ol>
29                             <li>
30                                 <label for="itemtype" class="required">Item type code: </label>
31                                 <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 %]" />
32                                 <span class="required">Required</span>
33                             </li>
34
35                             <li>
36                                 <label for="description" class="required">Description: </label>
37                                 <input type="text" name="description" id="description" size="42" value="[% itemtype.description | html %]" class="required" required="required">
38                                 <span class="required">Required</span>
39                             </li>
40                         </ol>
41
42                         <p> To create another item type later and for more settings go to:
43                             <span class="breadcrumbs"> Administration &rsaquo; Item types </span>
44                         </p>
45                         <input type="submit" class="btn btn-primary" value="Submit" />
46                     </fieldset>
47                 </form>
48             </div> <!-- / #onboarding-step4 -->
49         </div> <!-- / .row -->
50
51 [% INCLUDE 'intranet-bottom.inc' %]