forked from OCA/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
34 lines (34 loc) · 1.28 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
# Copyright 2015 Holger Brunn <[email protected]>
# Copyright 2016 Pedro M. Baeza <[email protected]>
# Copyright 2018 Simone Orsi <[email protected]>
# Copyright 2020 CorporateHub (https://corporatehub.eu)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "2D matrix for x2many fields",
"version": "15.0.1.0.3",
"maintainers": ["ChrisOForgeFlow"],
"development_status": "Production/Stable",
"author": (
"Therp BV, "
"Tecnativa, "
"Camptocamp, "
"CorporateHub, "
"Odoo Community Association (OCA)"
),
"website": "https://github.com/OCA/web",
"license": "AGPL-3",
"category": "Hidden/Dependency",
"summary": "Show list fields as a matrix",
"depends": ["web"],
"data": [],
"installable": True,
"assets": {
"web.assets_backend": [
"web_widget_x2many_2d_matrix/static/src/scss/web_widget_x2many_2d_matrix.scss",
"web_widget_x2many_2d_matrix/static/src/js/2d_matrix_renderer.js",
"web_widget_x2many_2d_matrix/static/src/js/2d_matrix_view.js",
"web_widget_x2many_2d_matrix/static/src/js/abstract_view_matrix_limit_extend.js",
"web_widget_x2many_2d_matrix/static/src/js/widget_x2many_2d_matrix.js",
],
},
}