-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (31 loc) · 887 Bytes
/
__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
# -*- coding: utf-8 -*-
# © 2016 Vividlab (<http://www.vividlab.de>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Web Timepicker Widget",
"version": "10.0.1.0.0",
"author": "VividLab, "
"Odoo Community Association (OCA), "
"Kaushal Prajapati",
"license": "AGPL-3",
"category": "Web",
"website": "http://www.vividlab.de",
'installable': True,
"depends": [
"web",
],
"css": [
"static/src/lib/jquery.timerpicker/jquery.timepicker.css",
"static/src/css/web_widget_timepicker.css",
],
"js": [
"static/src/lib/jquery.timerpicker/jquery.timepicker.js",
"static/src/js/web_widget_timepicker.js",
],
"data": [
"views/web_widget_timepicker_assets.xml",
],
"qweb": [
"static/src/xml/web_widget_timepicker.xml",
]
}