[IMP] models: move prefetching of records back to method _prefetch_field
[odoo/odoo.git] / openerp / cli / scaffold / __openerp__.jinja2
1 # -*- coding: utf-8 -*-
2 {
3     'name': "{{ module }}",
4
5     'summary': """
6         Short (1 phrase/line) summary of the module's purpose, used as
7         subtitle on modules listing or apps.openerp.com""",
8
9     'description': """
10         Long description of module's purpose
11     """,
12
13     'author': "Your Company",
14     'website': "http://www.yourcompany.com",
15
16     # Categories can be used to filter modules in modules listing
17     # Check <odoo>/addons/base/module/module_data.xml of the full list
18     'category': 'Uncategorized',
19     'version': '0.1',
20
21     # any module necessary for this one to work correctly
22     'depends': ['base', 'website'],
23     'data': [
24     ],
25
26     'demo': [
27     ],
28
29     'tests': [
30     ],
31 }