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 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Live Event Tracks',
'category': 'Marketing/Events',
'sequence': 1006,
'version': '1.0',
'summary': 'Support live tracks: streaming, participation, youtube',
'website': 'https://www.odoo.com/page/events',
'description': "",
'depends': [
'website_event_track',
],
'data': [
'views/assets.xml',
'views/event_track_templates_list.xml',
'views/event_track_templates_page.xml',
'views/event_track_views.xml',
],
'demo': [
'data/event_track_demo.xml'
],
'qweb': [
'static/src/xml/website_event_track_live_templates.xml'
],
'application': False,
'installable': True,
'license': 'LGPL-3',
}
|