769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
31 lines
778 B
Python
31 lines
778 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Customer References',
|
|
'category': 'Website',
|
|
'website': 'https://www.odoo.com/page/website-builder',
|
|
'summary': 'Publish Your Customer References',
|
|
'version': '1.0',
|
|
'description': """
|
|
Odoo Customer References
|
|
===========================
|
|
""",
|
|
'depends': [
|
|
'website_crm_partner_assign',
|
|
'website_partner',
|
|
'website_google_map',
|
|
],
|
|
'demo': [
|
|
'data/res_partner_demo.xml',
|
|
],
|
|
'data': [
|
|
'views/website_customer_templates.xml',
|
|
'views/res_partner_views.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/ir_rule.xml',
|
|
],
|
|
'qweb': [],
|
|
'installable': True,
|
|
}
|