flectra/addons/portal/__manifest__.py

31 lines
1.0 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Customer Portal',
2018-01-16 12:08:17 +01:00
'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.
2018-01-16 11:34:37 +01:00
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',
],
}