Lines 274-287
Link Here
|
274 |
<ol><li><label for="activestatus">Vendor is:</label> |
274 |
<ol><li><label for="activestatus">Vendor is:</label> |
275 |
[% IF ( active ) %] |
275 |
[% IF ( active ) %] |
276 |
<input type="radio" id="activestatus" name="status" value="1" checked="checked" /> |
276 |
<input type="radio" id="activestatus" name="status" value="1" checked="checked" /> |
277 |
<label class="radio" for="activestatus">Active</label> |
277 |
<label class="radio" for="activestatus">[% tp('Vendor status', 'Active') | html %]</label> |
278 |
<input type="radio" id="inactivestatus" name="status" value="0" /> |
278 |
<input type="radio" id="inactivestatus" name="status" value="0" /> |
279 |
<label class="radio" for="inactivestatus">Inactive</label> |
279 |
<label class="radio" for="inactivestatus">[% tp('Vendor status', 'Inactive') | html %]</label> |
280 |
[% ELSE %] |
280 |
[% ELSE %] |
281 |
<input type="radio" id="activestatus" name="status" value="1" /> |
281 |
<input type="radio" id="activestatus" name="status" value="1" /> |
282 |
<label class="radio" for="activestatus">Active</label> |
282 |
<label class="radio" for="activestatus">[% tp('Vendor status', 'Active') | html %]</label> |
283 |
<input type="radio" id="inactivestatus" name="status" value="0" checked="checked" /> |
283 |
<input type="radio" id="inactivestatus" name="status" value="0" checked="checked" /> |
284 |
<label class="radio" for="inactivestatus">Inactive</label> |
284 |
<label class="radio" for="inactivestatus">[% tp('Vendor status', 'Inactive') | html %]</label> |
285 |
[% END %]</li> |
285 |
[% END %]</li> |
286 |
<li><label for="list_currency">List prices are: </label> |
286 |
<li><label for="list_currency">List prices are: </label> |
287 |
<select name="list_currency" id="list_currency"> |
287 |
<select name="list_currency" id="list_currency"> |
288 |
- |
|
|