Created
September 17, 2019 02:55
-
-
Save sambatlim/a7fe7f3c78249b80de0c1c3b397f24af to your computer and use it in GitHub Desktop.
My student_view.xml file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<odoo> | |
<data> | |
<record id="student_menu_action" model="ir.actions.act_window"> | |
<field name="name">Students</field> | |
<field name="res_model">student.student</field> | |
<field name="view_type">form</field> | |
<field name="view_mode">tree,form</field> | |
<field name="domain">[]</field> | |
<field name="help" type="html"> | |
<p class="oe_view_nocontent_create">Create The First Student | |
</p> | |
</field> | |
</record> | |
<menuitem id="school_menu" | |
name="School"/> | |
<menuitem id="school_student_menu" parent="school_menu" name="Student"/> | |
</data> | |
</odoo> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment