__manifest__.py 814 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Customer References',
  5. 'category': 'Website/Website',
  6. 'summary': 'Publish your customer references',
  7. 'version': '1.0',
  8. 'description': """
  9. Publish your customers as business references on your website to attract new potential prospects.
  10. """,
  11. 'depends': [
  12. 'website_crm_partner_assign',
  13. 'website_partner',
  14. 'website_google_map',
  15. ],
  16. 'demo': [
  17. 'data/res_partner_demo.xml',
  18. ],
  19. 'data': [
  20. 'views/website_customer_templates.xml',
  21. 'views/res_partner_views.xml',
  22. 'security/ir.model.access.csv',
  23. 'security/ir_rule.xml',
  24. 'views/snippets.xml',
  25. ],
  26. 'installable': True,
  27. 'license': 'LGPL-3',
  28. }