Lines 7-15
Link Here
|
7 |
[% END %] |
7 |
[% END %] |
8 |
</title> |
8 |
</title> |
9 |
[% INCLUDE 'installer-doc-head-close.inc' %] |
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> |
10 |
</head> |
14 |
|
11 |
|
15 |
<body id="installer" class="installer"> |
12 |
<body id="installer" class="installer"> |
Lines 43-65
Link Here
|
43 |
[% IF currency %] |
40 |
[% IF currency %] |
44 |
<span class="label">Currency: </span> |
41 |
<span class="label">Currency: </span> |
45 |
<input type="hidden" name="is_a_modif" value="1" /> |
42 |
<input type="hidden" name="is_a_modif" value="1" /> |
46 |
<input type="hidden" name="currency_code" id="currency" value="[% currency.currency %]" />[% currency.currency %] |
43 |
<input type="hidden" name="currency_code" id="currency" value="[% currency.currency | html %]" />[% currency.currency | html %] |
47 |
[% ELSE %] |
44 |
[% ELSE %] |
48 |
<label for="currency_code" class="required">Currency: </label> |
45 |
<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> |
46 |
<input type="text" name="currency_code" id="currency_code" size="50" maxlength="50" required="required" class="required" /> <span class="required">Required</span> |
50 |
[% END %] |
47 |
[% END %] |
51 |
</li> |
48 |
</li> |
52 |
<li> |
49 |
<li> |
53 |
<label for="rate" class="required">Rate: </label> |
50 |
<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> |
51 |
<input type="text" name="rate" id="rate" size="10" maxlength="10" value=1 readonly /> <span class="required">Required</span> |
55 |
</li> |
52 |
</li> |
56 |
<li> |
53 |
<li> |
57 |
<label for="symbol" class="required">Symbol: </label> |
54 |
<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> |
55 |
<input type="text" name="symbol" id="symbol" size="5" maxlength="5" value="[% currency.symbol | html %]" required="required" class="required" /> <span class="required">Required</span> |
59 |
</li> |
56 |
</li> |
60 |
<li> |
57 |
<li> |
61 |
<label for="isocode">ISO code: </label> |
58 |
<label for="isocode">ISO code: </label> |
62 |
<input type="text" name="isocode" id="isocode" size="5" maxlength="5" value="[% currency.isocode %]" /> |
59 |
<input type="text" name="isocode" id="isocode" size="5" maxlength="5" value="[% currency.isocode | html %]" /> |
|
|
60 |
</li> |
61 |
<li> |
62 |
<label for="isocode">Space separation between symbol and value: </label> |
63 |
<input type="checkbox" name="p_sep_by_space" id="p_sep_by_space" size="5" maxlength="5" value="1" /> |
63 |
</li> |
64 |
</li> |
64 |
<input type="hidden" id="active" name="active" value="1"/> |
65 |
<input type="hidden" id="active" name="active" value="1"/> |
65 |
</ol> |
66 |
</ol> |
Lines 75-79
Link Here
|
75 |
[% END %] |
76 |
[% END %] |
76 |
</div> <!-- / #onboarding-step6 --> |
77 |
</div> <!-- / #onboarding-step6 --> |
77 |
</div> <!-- / .row --> |
78 |
</div> <!-- / .row --> |
78 |
|
79 |
</div> <!-- / .container-fluid --> |
79 |
[% INCLUDE 'intranet-bottom.inc' %] |
80 |
[% MACRO jsinclude BLOCK %] |
|
|
81 |
[% INCLUDE 'validator-strings.inc' %] |
82 |
[% INCLUDE 'installer-strings.inc' %] |
83 |
<script type="text/javascript" src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script> |
84 |
[% END %] |
85 |
[% INCLUDE 'installer-intranet-bottom.inc' %] |
80 |
- |
|
|