flectra/addons/event/__manifest__.py

41 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'Events Organization',
'author': 'Odoo S.A',
'version': '1.0',
'website': 'https://flectrahq.com/page/events',
'category': 'Marketing',
'summary': 'Trainings, Conferences, Meetings, Exhibitions, Registrations',
'description': """
Organization and management of Events.
======================================
The event module allows you to efficiently organize events and all related tasks: planning, registration tracking,
attendances, etc.
Key Features
------------
* Manage your Events and Registrations
* Use emails to automatically confirm and send acknowledgments for any event registration
""",
'depends': ['base_setup', 'mail'],
'data': [
'security/event_security.xml',
'security/ir.model.access.csv',
'wizard/event_confirm_view.xml',
'views/event_views.xml',
'report/event_event_templates.xml',
'report/event_event_reports.xml',
'data/email_template_data.xml',
'data/event_data.xml',
'views/res_config_settings_views.xml',
'views/event_templates.xml',
'views/res_partner_views.xml',
],
'demo': [
'data/event_demo.xml',
],
'installable': True,
'auto_install': False,
}