Files
web/web_timeline/demo/ir_cron_view.xml
Houzéfa Abbasbhay 97d02aa2ee [IMP] web_timeline: Add demo view on cron tasks
This way we can showcase this module without project_timeline.
2024-10-20 12:31:03 -05:00

15 lines
591 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Add demo timeline view on crons so we can showcase this module without project_timeline. -->
<record id="ir_cron_timeline" model="ir.ui.view">
<field name="model">ir.cron</field>
<field name="type">timeline</field>
<field name="arch" type="xml">
<timeline date_start="nextcall" default_group_by="model_id" />
</field>
</record>
<record id="base.ir_cron_act" model="ir.actions.act_window">
<field name="view_mode">tree,form,calendar,timeline</field>
</record>
</odoo>