Line 0
Link Here
|
0 |
- |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
|
|
2 |
<title>Koha › Web installer › |
3 |
[% IF all_done %] |
4 |
Complete |
5 |
[% ELSE %] |
6 |
Define a currency |
7 |
[% END %] |
8 |
</title> |
9 |
[% INCLUDE 'installer-doc-head-close.inc' %] |
10 |
[% INCLUDE 'validator-strings.inc' %] |
11 |
[% INCLUDE 'installer-strings.inc' %] |
12 |
<script type="text/javascript" src="[% interface %]/[% theme %]/js/onboarding.js"></script> |
13 |
</head> |
14 |
|
15 |
<body id="installer" class="installer"> |
16 |
<div class="container-fluid"> |
17 |
<div class="row"> |
18 |
<div id="onboarding-step5" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2"> |
19 |
<h1 id="logo"><a href="#">Koha</a></h1> |
20 |
|
21 |
[% IF all_done %] |
22 |
|
23 |
<h2>Web installer › Complete</h2> |
24 |
[% INCLUDE 'onboarding_messages.inc' %] |
25 |
<h3>Congratulations you have finished and are ready to use Koha</h3> |
26 |
<a class="btn btn-success" href="/cgi-bin/koha/mainpage.pl">Start using Koha</a> |
27 |
|
28 |
[% ELSE %] |
29 |
|
30 |
<h2>Web installer › Define a currency </h2> |
31 |
|
32 |
[% INCLUDE 'onboarding_messages.inc' %] |
33 |
|
34 |
<form name="createcurrency" id="createcurrency" method="post" action="onboarding.pl"> |
35 |
<input type="hidden" name="step" value="6"/> |
36 |
<input type="hidden" name="op" value="add_validate_currency" /> |
37 |
<fieldset class="rows"> |
38 |
<legend> |
39 |
New currency |
40 |
</legend> |
41 |
<ol> |
42 |
<li> |
43 |
[% IF currency %] |
44 |
<span class="label">Currency: </span> |
45 |
<input type="hidden" name="is_a_modif" value="1" /> |
46 |
<input type="hidden" name="currency_code" id="currency" value="[% currency.currency %]" />[% currency.currency %] |
47 |
[% ELSE %] |
48 |
<label for="currency_code" class="required">Currency: </label> |
49 |
<input type="text" name="currency_code" id="currency_code" size="50" maxlength="50" required="required" class="requ ired" /> <span class="required">Required</span> |
50 |
[% END %] |
51 |
</li> |
52 |
<li> |
53 |
<label for="rate" class="required">Rate: </label> |
54 |
<input type="text" name="rate" id="rate" size="10" maxlength="10" value=1 readonly /> <span class="required">Required</span> |
55 |
</li> |
56 |
<li> |
57 |
<label for="symbol" class="required">Symbol: </label> |
58 |
<input type="text" name="symbol" id="symbol" size="5" maxlength="5" value="[% currency.symbol %]" required="required" class="required" /> <span class="required">Required</span> |
59 |
</li> |
60 |
<li> |
61 |
<label for="isocode">ISO code: </label> |
62 |
<input type="text" name="isocode" id="isocode" size="5" maxlength="5" value="[% currency.isocode %]" /> |
63 |
</li> |
64 |
<input type="hidden" id="active" name="active" value="1"/> |
65 |
</ol> |
66 |
</fieldset> |
67 |
<p> |
68 |
To create another currency, go to: |
69 |
<span class="breadcrumbs">Administration › Currencies and exchange rates </span> |
70 |
</p> |
71 |
<fieldset class="action"> |
72 |
<input type="submit" class="btn btn-primary" value="Submit" /> |
73 |
</fieldset> |
74 |
</form> |
75 |
[% END %] |
76 |
</div> <!-- / #onboarding-step6 --> |
77 |
</div> <!-- / .row --> |
78 |
|
79 |
[% INCLUDE 'intranet-bottom.inc' %] |