Files
Odoo-Tutorial/education/__manifest__.py
XuanHuyen 6baa855977 init
2025-02-23 01:59:56 +07:00

33 lines
795 B
Python

# -*- coding: utf-8 -*-
{
'name': "Education",
'summary': "Module education management",
'description': """
Long description of module's purpose
""",
'author': "Huyen107",
'website': "https://www.yourcompany.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Education, Management',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
'security/ir.model.access.csv',
'views/education_student_views.xml',
'views/education_class_views.xml',
'views/student_level_views.xml',
],
}