Hello;
Im having problems with the kanban view, i want to make it fully clickable like the odoo default ones, this is my code, the closer i got is making image and content clickable but its not quite the same.
<record model="ir.ui.view" id="articulos_kanban_view">
<field name="name">articulo.kanban</field>
<field name="model">articulo</field>
<field name="type">kanban</field>
<field name="arch" type="xml">
<kanban >
<templates>
<t t-name="kanban-box">
<div class="oe_resource_vignette">
<a type="edit"><div class="oe_resource_image">
<img t-att-src="kanban_image('articulo', 'foto', record.id.value)" class="oe_resource_picture"/>
</div>
<div class="oe_resource_details">
<ul class="lista">
<li><b><field name="codigo"/></b></li>
<li><b><field name="tipo"/></b></li>
</ul>
</div></a>
</div>
</t>
</templates>
</kanban>
</field>
</record>
I dont know if what im asking can be done. Thanks in advance.