forked from OpenG2P/openg2p-erp-community-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
43 lines (41 loc) · 1.52 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
# Copyright (C) 2016-2019 Artem Shurshilov <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Widget image preview',
'summary': """Adds functional preview (open/popup) image in original size
Enlarge image Enlarge images product images preview product images picture
foto product photo product preview enlarge """,
'description': """
This is extension for <field widget="image"> widget image
==============================================
* STOCK and CONTACT example:
* open image on click in original size in popup
* close on close button
* close on click on/out image
""",
'author': 'Shurshilov Artem',
# "website": "https://vk.com/id20132180",
'website': "http://www.eurodoo.com",
# Categories can be used to filter modules in modules listing
'category': "Tools",
'version': '12.4.0',
# any module necessary for this one to work correctly
'depends': ['web','mail'],
"license": "LGPL-3",
# 'price': 9.99,
# 'currency': 'EUR',
# always loaded
'images':[
'static/description/stock_open2.png',
'static/description/stock_open.png',
'static/description/stock_cursor.png',
],
'data': [ 'views/form_image_preview_templates.xml', ],
'qweb': [ 'static/src/xml/image.xml', ],
'installable': True,
'application': False,
# If it's True, the modules will be auto-installed when all dependencies
# are installed
'auto_install': False,
}