Lines 558-566
$(document).ready(function()
Link Here
|
558 |
<select name="gstrate" id="gstrate" onchange="updateCosts();"> |
558 |
<select name="gstrate" id="gstrate" onchange="updateCosts();"> |
559 |
[% FOREACH gst IN gst_values %] |
559 |
[% FOREACH gst IN gst_values %] |
560 |
[% IF ( gst.option == gstrate ) %] |
560 |
[% IF ( gst.option == gstrate ) %] |
561 |
<option value="[% gst.option %]" selected="selected">[% gst.option * 100 | format("%.1f") %]%</option> |
561 |
<option value="[% gst.option %]" selected="selected">[% gst.option * 100 %]%</option> |
562 |
[% ELSE %] |
562 |
[% ELSE %] |
563 |
<option value="[% gst.option %]">[% gst.option * 100 | format("%.1f") %]%</option> |
563 |
<option value="[% gst.option %]">[% gst.option * 100 %]%</option> |
564 |
[% END %] |
564 |
[% END %] |
565 |
[% END %] |
565 |
[% END %] |
566 |
</select> |
566 |
</select> |
567 |
- |
|
|