43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Academy Management",
|
|
|
|
'summary': "Academy Management",
|
|
|
|
'description': """
|
|
Academy Management
|
|
""",
|
|
|
|
'author': "NXHuyen",
|
|
'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': 'Uncategorized',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base', 'mail'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/academy_security.xml',
|
|
'reports/student_report_template.xml',
|
|
'reports/student_report.xml',
|
|
'data/ir_sequence_data.xml',
|
|
'views/academy_course_views.xml',
|
|
'views/academy_schedule_views.xml',
|
|
'views/academy_student_views.xml',
|
|
'views/academy_teacher_views.xml',
|
|
'data/email_template_reminder.xml',
|
|
'data/scheduled_action_cron.xml',
|
|
'views/academy_menus.xml',
|
|
],
|
|
'controllers': [
|
|
'controllers/academy_course_api.py',
|
|
]
|
|
}
|
|
|