View | Details | Raw Unified | Return to bug 9593
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-5 / +12 lines)
Lines 46-53 Link Here
46
<div id="bd">
46
<div id="bd">
47
    <div id="yui-main">
47
    <div id="yui-main">
48
    <div class="yui-b">
48
    <div class="yui-b">
49
<div class="message dialog"><p style="text-align:justify" >The active currency priority will be picked during the importation process from a staged file whenever the price data is provided under different currencies.<br/>
50
The symbol may be the pure currency sign or a string in which it's included ( like '$US' ).</p></div>
51
[% IF ( else ) %]
49
[% IF ( else ) %]
52
<div id="toolbar" class="btn-toolbar">
50
<div id="toolbar" class="btn-toolbar">
53
    <a class="btn btn-small" id="newcurrency" href="[% script_name %]?op=add_form"><i class="icon-plus"></i> New currency</a>
51
    <a class="btn btn-small" id="newcurrency" href="[% script_name %]?op=add_form"><i class="icon-plus"></i> New currency</a>
Lines 83-89 The symbol may be the pure currency sign or a string in which it's included ( li Link Here
83
            <input type="text" name="symbol" id="symbol" size="5" maxlength="5" value="[% symbol %]" required="required" class="required" /> <span class="required">Required</span>
81
            <input type="text" name="symbol" id="symbol" size="5" maxlength="5" value="[% symbol %]" required="required" class="required" /> <span class="required">Required</span>
84
        </li>
82
        </li>
85
        <li>
83
        <li>
86
            <label for="isocode" class="required">Iso code: </label>
84
            <label for="isocode" class="required">ISO code: </label>
87
            <input type="text" name="isocode" id="isocode" size="5" maxlength="5" value="[% isocode %]" required="required"  class="required" /> <span class="required">Required</span>
85
            <input type="text" name="isocode" id="isocode" size="5" maxlength="5" value="[% isocode %]" required="required"  class="required" /> <span class="required">Required</span>
88
        </li>
86
        </li>
89
        <li>
87
        <li>
Lines 165-171 The symbol may be the pure currency sign or a string in which it's included ( li Link Here
165
            <th>Currency</th>
163
            <th>Currency</th>
166
            <th>Rate</th>
164
            <th>Rate</th>
167
            <th>Symbol</th>
165
            <th>Symbol</th>
168
            <th>Iso code</th>
166
            <th>ISO code</th>
169
            <th>Last updated</th>
167
            <th>Last updated</th>
170
            <th>Active</th>
168
            <th>Active</th>
171
            <th colspan="2">Actions&nbsp;</th>
169
            <th colspan="2">Actions&nbsp;</th>
Lines 197-202 The symbol may be the pure currency sign or a string in which it's included ( li Link Here
197
        <a href="[% script_name %]?offset=[% nextpage %]">Next &gt;&gt;</a>
195
        <a href="[% script_name %]?offset=[% nextpage %]">Next &gt;&gt;</a>
198
    [% END %]
196
    [% END %]
199
197
198
    <div class="hint">
199
        <p>
200
            When importing MARC files via the staging tools, the tool will attempt to find and use the price of the currently active currency.
201
        </p>
202
        <p>
203
            Some examples of compatible price fields include "$9.99", "9.99 USD", "$9.99 USD", "9.99 USD (10.00 CAN)", "$9.99 USD (paperback)".
204
            These examples assume USD is the active currency.
205
        </p>
206
    </div>
207
200
[% END %]
208
[% END %]
201
209
202
</div>
210
</div>
203
- 

Return to bug 9593