Is it possible to inherit the form view and add a title to it? I tried:
<field name="arch" type="xml"> <xpath expr="//form" position="before"> <header> <h1>hi</h1> </header> </xpath> </field>
and
<form position="inside"> <header> <h1>hi</h1> </header> </form>
What can I do? I want to add buttons to the form beautifully, without having to redefine the entire form.
source share