flectra/addons/portal/__manifest__.py
2018-01-16 16:38:17 +05:30

31 lines
1.0 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Customer Portal',
'author': 'Odoo S.A.',
'summary': 'Customer Portal',
'sequence': '9000',
'category': 'Hidden',
'description': """
This module adds required base code for a fully integrated customer portal.
It contains the base controller class and base templates. Business addons
will add their specific templates and controllers to extend the customer
portal.
This module contains most code coming from flectra v10 website_portal. Purpose
of this module is to allow the display of a customer portal without having
a dependency towards website edition and customization capabilities.""",
'depends': ['http_routing', 'mail'],
'data': [
'data/portal_data.xml',
'views/assets.xml',
'views/portal_templates.xml',
'wizard/portal_wizard_views.xml',
],
'qweb': [
'static/src/xml/portal_chatter.xml',
'static/src/xml/portal_signature.xml',
],
}