zsh-autosuggestions/0_openacademy/__manifest__.py

104 lines
2.2 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "0_openacademy",
'name_vi_VN': "",
'summary': """
Short (1 phrase/line) summary of the module's purpose, used as
subtitle on modules listing or apps.openerp.com""",
'summary_vi_VN': """
Mô tả ngắn gọn bằng tiếng Việt (1 câu, 1 dòng) về mục đích của module
""",
'description': """
What it does
============
Long description of module's purpose
Key Features
============
1. Feature 1
* Sub-Feature 1
* Sub-Feature 2
* Sub-sub-feature 1
* Sub-sub-feature 2
2. Feature 2
* Sub-Feature 1
* Sub-Feature 2
Editions Supported
==================
1. Community Edition
2. Enterprise Edition
""",
'description_vi_VN': """
Ứng dụng này làm gì
===================
Mô tả chi tiết về module
Tính năng chính
===============
1. Tính năng 1
* Tính năng Phụ 1
* Tính năng Phụ 2
* Tính năng Phụ Chi tiết 1
* Tính năng Phụ Chi tiết 2
2. Tính năng 2
* Tính năng Phụ 1
* Tính năng Phụ 2
Ấn bản được Hỗ trợ
==================
1. Ấn bản Community
2. Ấn bản Enterprise
""",
'author': "Viindoo",
'website': "https://viindoo.com",
'live_test_url': "https://v13demo-int.erponline.vn",
'support': "apps.support@viindoo.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/tvtma/odoo/blob/13.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Uncategorized',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
'security/ir.model.access.csv',
'data/openacademy_course_data.xml',
'views/openacademy_course_view.xml',
'views/openacademy_class_view.xml',
'views/openacademy_class_add_view.xml',
# 'views/templates.xml',
],
# only loaded in demonstration mode
'demo': [
# 'demo/demo.xml',
],
'images' : [
# 'static/description/main_screenshot.png'
],
'installable': True,
'application': False,
'auto_install': False,
'price': 99.9,
'currency': 'EUR',
'license': 'OPL-1',
}