23 lines
722 B
Python
23 lines
722 B
Python
# my_employee_profile/__manifest__.py
|
|
|
|
{
|
|
'name': 'Employee Profile',
|
|
'version': '1.0',
|
|
'category': 'Human Resources',
|
|
'summary': 'Display employee profile using Owl.js',
|
|
'depends': ['base', 'hr', 'web','muk_web_theme'], # Depends on base, hr, and web for Owl.js and hr.employee model
|
|
'data': [
|
|
'views/employee_dashboard_views.xml', # Your template
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'hr_emp_dashboard/static/src/js/profile_component.js',
|
|
'hr_emp_dashboard/static/src/xml/employee_profile_template.xml',
|
|
'hr_emp_dashboard/static/src/css/employee_dashboard.css'
|
|
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
}
|