summaryrefslogtreecommitdiff
path: root/addons/website_event_track_live_quiz/__manifest__.py
blob: 1bcbf80015be888a4e35552b499311e52fa9fd41 (plain)
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
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.


{
    'name': 'Quiz on Live Event Tracks',
    'category': 'Hidden',
    'version': '1.0',
    'summary': 'Bridge module to support quiz features during "live" tracks. ',
    'website': 'https://www.odoo.com/page/events',
    'description': "",
    'depends': [
        'website_event_track_live',
        'website_event_track_quiz',
    ],
    'data': [
        'views/assets.xml',
        'views/event_track_templates_page.xml',
    ],
    'demo': [
    ],
    'qweb': [
        'static/src/xml/website_event_track_live_templates.xml',
        'static/src/xml/website_event_track_quiz_templates.xml',
    ],
    'application': False,
    'installable': True,
    'auto_install': True,
    'license': 'LGPL-3',
}