标签: python odoo-12
我需要将表单呈现给手机。主要思想是动态解析表单。
有什么想法吗? 这是主要思想:
if (isMobile) { <web-mobile></web-mobile> } else { <web-desktop></web-desktop> }
我使用
var config = require('web.config'); config.device.isMobile;
但是我需要通过模板解析表单。这有可能吗?