Files
encoach_be_odoo19/encoach_training/views/walkthrough_views.xml
Talal Sharabi f5b627256f EnCoach Odoo 19 custom modules
Full backend implementation with custom Odoo modules:
- encoach_api: Core API, user management, JWT auth
- encoach_exam: Exam generation (reading, writing, listening, speaking)
- encoach_evaluate: AI-powered evaluation (writing, speaking)
- encoach_training: Training tips and walkthrough
- encoach_storage: File storage management
- encoach_payment: Stripe, PayPal, Paymob integration
- encoach_mail: Email notifications

Made-with: Cursor
2026-03-14 16:46:46 +04:00

54 lines
1.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_encoach_walkthrough_tree" model="ir.ui.view">
<field name="name">encoach.walkthrough.tree</field>
<field name="model">encoach.walkthrough</field>
<field name="arch" type="xml">
<list string="Walkthroughs">
<field name="name"/>
<field name="module"/>
</list>
</field>
</record>
<record id="view_encoach_walkthrough_form" model="ir.ui.view">
<field name="name">encoach.walkthrough.form</field>
<field name="model">encoach.walkthrough</field>
<field name="arch" type="xml">
<form string="Walkthrough">
<sheet>
<group>
<group>
<field name="name"/>
<field name="module"/>
</group>
</group>
<group>
<field name="content" widget="json"/>
</group>
</sheet>
</form>
</field>
</record>
<record id="action_encoach_walkthrough" model="ir.actions.act_window">
<field name="name">Walkthroughs</field>
<field name="res_model">encoach.walkthrough</field>
<field name="view_mode">list,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Create your first walkthrough.
</p>
<p>
Walkthroughs provide guided content for Reading, Listening, Writing, Speaking, and Level modules.
</p>
</field>
</record>
<menuitem id="menu_encoach_walkthroughs"
name="Walkthroughs"
parent="encoach_core.menu_encoach_training"
action="action_encoach_walkthrough"
sequence="30"/>
</odoo>