__manifest__.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Online Jobs',
  5. 'category': 'Website/Website',
  6. 'sequence': 310,
  7. 'version': '1.0',
  8. 'summary': 'Manage your online hiring process',
  9. 'description': "This module allows to publish your available job positions on your website and keep track of application submissions easily. It comes as an add-on of *Recruitment* app.",
  10. 'depends': ['hr_recruitment', 'website_mail'],
  11. 'data': [
  12. 'security/ir.model.access.csv',
  13. 'security/website_hr_recruitment_security.xml',
  14. 'data/config_data.xml',
  15. 'views/website_hr_recruitment_templates.xml',
  16. 'views/hr_recruitment_views.xml',
  17. 'views/hr_job_views.xml',
  18. 'views/website_pages_views.xml',
  19. 'views/snippets.xml',
  20. ],
  21. 'demo': [
  22. 'data/hr_job_demo.xml',
  23. ],
  24. 'installable': True,
  25. 'application': True,
  26. 'auto_install': ['hr_recruitment', 'website_mail'],
  27. 'assets': {
  28. 'web.assets_frontend': [
  29. 'website_hr_recruitment/static/src/scss/**/*',
  30. ],
  31. 'website.assets_editor': [
  32. 'website_hr_recruitment/static/src/js/systray_items/new_content.js',
  33. 'website_hr_recruitment/static/src/js/website_hr_recruitment_editor.js',
  34. ],
  35. 'web.assets_tests': [
  36. 'website_hr_recruitment/static/tests/**/*',
  37. ],
  38. },
  39. 'license': 'LGPL-3',
  40. }