forked from OCA/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
38 lines (37 loc) · 1.01 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
# -*- coding: utf-8 -*-
# Copyright 2015 Antiun Ingenieria S.L. - Antonio Espinosa
# Copyright 2017 Jairo Llopis <[email protected]>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Website Multi Theme",
"summary": "Support different theme per website",
"version": "10.0.1.0.0",
"category": "Website",
"website": "https://www.tecnativa.com",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
"website",
],
"data": [
"security/ir.model.access.csv",
"wizards/website_config_settings_view.xml",
"data/themes_bootswatch.xml",
"data/themes_private.xml",
"templates/assets.xml",
"templates/patterns.xml",
],
"demo": [
"demo/pages.xml",
"demo/themes.xml",
],
"external_dependencies": {
"bin": [
"lessc",
"sass",
"scss",
],
},
}