25 lines
580 B
Python
25 lines
580 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Documentation',
|
|
'author': 'Odoo S.A.',
|
|
'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',
|
|
],
|
|
}
|