[FIX] website_sale: do not set t-field in option

t-field in option input (select > option) is not supported
This commit is contained in:
Denis Ledoux 2014-07-17 17:22:43 +02:00
parent decd2c7845
commit 49c203d6b9
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@
<select class="form-control" name="attrib">
<option value=""/>
<t t-foreach="a.value_ids" t-as="v">
<option t-att-value="'%s,%s' % (a.id,v.id)" t-field="v.name" t-att-selected="'selected' if v.id in attrib_set else ''"/>
<option t-att-value="'%s,%s' % (a.id,v.id)" t-esc="v.name" t-att-selected="'selected' if v.id in attrib_set else ''"/>
</t>
</select>
</t>