769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
24 lines
544 B
Python
24 lines
544 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Documentation',
|
|
'category': 'Website',
|
|
'summary': 'Forum, Documentation',
|
|
'description': """
|
|
Documentation based on question and pertinent answers of Forum
|
|
""",
|
|
'depends': [
|
|
'website_forum'
|
|
],
|
|
'data': [
|
|
'data/doc_data.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/doc.xml',
|
|
'views/website_doc.xml',
|
|
],
|
|
'demo': [
|
|
'data/doc_demo.xml',
|
|
],
|
|
}
|