|
Lines 305-313
Link Here
|
| 305 |
<input type="text" size="20" name="unitprice" id="unitprice_currency" value="" /> |
305 |
<input type="text" size="20" name="unitprice" id="unitprice_currency" value="" /> |
| 306 |
[% IF currencies.count %] |
306 |
[% IF currencies.count %] |
| 307 |
<select name="currency"> |
307 |
<select name="currency"> |
| 308 |
<option value="[% active_currency.rate %]" selected="selected">[% active_currency.currency %] ([% active_currency.symbol %])</option> |
308 |
<option value="[% active_currency.rate | html %]" selected="selected">[% active_currency.currency | html %] ([% active_currency.symbol | html %])</option> |
| 309 |
[% FOR currency IN currencies %] |
309 |
[% FOR currency IN currencies %] |
| 310 |
<option value="[% currency.rate %]">[% currency.currency %] ([% currency.symbol %])</option> |
310 |
<option value="[% currency.rate | html %]">[% currency.currency | html %] ([% currency.symbol | html %])</option> |
| 311 |
[% END %] |
311 |
[% END %] |
| 312 |
</select> |
312 |
</select> |
| 313 |
[% END %] |
313 |
[% END %] |
| 314 |
- |
|
|