I'm using Odoo14(Ent) and I have tried putting <audio controls>
in XML file, but it failed as the tag does not exist in Odoo, apparently. Is there any way to achieve this?
Update:
For anyone who is familiar with Odoo knows that the XML tags will get rendered to HTML.
CodePudding user response:
I figured it out. I had to convert <audio controls>
to something like <audio controls="true">
in order to make it work.