Reputation: 17214
I have a field called image_url for the CRM.
I want to display that image_url in a <img
tag in the CRM.
<field name="image_url"/>
can I just use <img src="<field name="pickup_time"/>" />
?
Upvotes: 1
Views: 230
Reputation: 894
In /odoo/odoo/addons/base/res/res_country_data.xml
I found this example:
<field file="base/static/img/country_flags/ca.png" name="image" type="base64" />
Give it a try!
Upvotes: 0