Files
web/web_tree_image_tooltip/__manifest__.py
Sylvain LE GAL d7901a9943 [IMP] web_tree_image_tooltip :
* Add the possibility to define an alternative image field for the tooltip image to reduce the bandwidth used
* Add image in the description of the module
* Add demo data for the res.users tree view
2022-03-11 20:21:24 +01:00

29 lines
855 B
Python

# Copyright 2014 Therp BV (<http://therp.nl>).
# Copyright 2015 Leonardo Donelli @ MONKSoftware
# Copyright 2013 Marcel van der Boom <marcel@hsdev.com>
# Copyright 2016 - TODAY Serpent Consulting Services Pvt. Ltd.
# (<http://www.serpentcs.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Show images in tree views via tooltip',
'version': '12.0.1.0.0',
'author': "Therp BV, "
"MONK Software, "
"Odoo Community Association (OCA), "
"Serpent Consulting Services Pvt. Ltd.",
'website': 'https://github.com/OCA/web',
'license': 'AGPL-3',
'category': 'Web',
'depends': [
'web',
],
'data': [
'view/assets.xml',
],
'demo': [
'demo/view_res_users.xml',
],
'installable': True,
}