html 如何在树视图中显示没有记录的图像?

v9tzhpje  于 2023-05-12  发布在  其他
关注(0)|答案(1)|浏览(98)

我想在树视图中显示图像时,没有记录。在这段代码中是否可能。

<record id="action_partner_form" model="ir.actions.act_window">
            <field name="name">Customers</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">res.partner</field>
            <field name="view_mode">kanban,tree,form</field>
            <field name="context">{'res_partner_search_mode': 'customer'}</field>
            <field name="search_view_id" ref="view_res_partner_filter"/>
            <field name="help" type="html">
              <p class="o_view_nocontent_smiling_face">
                Create a Contact in your address book
              </p><p>
                Odoo helps you track all activities related to your contacts.
              </p>
            </field>
</record>

我试图把<img src="static/description/icon.png"/>在帮助,但它是显示为没有图像。

shyt4zoc

shyt4zoc1#

需要在src中添加模块名称,如下所示:

<img src="/base/static/description/icon.png" class="img img-fluid o_we_custom_image"/>

相关问题