hi all,
in below code i want to have another field " active " with <option t-esc="zone.name" how it can be done with its Display value like: value stored in db is " active " the display value is " Active " when user click in it to select a Zone, it should display zone + active as below:
ZoneNameA....[ Active ]
ZoneNameB....[ InActive ]
etc.
<div class="form-group field-zone_id">
<label for="zone_id" class="control-label">Your Zone</label>
<select name="zone_id" class="form-control link-style">
<t t-foreach="zone_rec" t-as="zone">
<option t-esc="zone.name" t-att-value="zone.id"/>
</t>
</select>
</div>
regards