Skip to content

Commit

Permalink
Merge 47171fe into 530a807
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsirintanis committed Dec 6, 2018
2 parents 530a807 + 47171fe commit 9bb2bd7
Show file tree
Hide file tree
Showing 20 changed files with 3,047 additions and 0 deletions.
51 changes: 51 additions & 0 deletions event_session/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

====================================
Create and assign sessions to events
====================================

This module allows to create sessions associated with events.

Usage
=====

You can either:

* Go to Events > Sessions and create some sessions associated with an event.
* Go to an event and use the sessions wizard to create all your event sessions
according to a given schedule.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/event/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------

* Sergio Teruel <sergio.teruel@tecnativa.com>
* David Vidal <david.vidal@tecnativa.com>
* Nikos Tsirintanis <ntsirintanis@therp.nl>

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit https://odoo-community.org.
4 changes: 4 additions & 0 deletions event_session/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import models
from . import wizards
from . import tests
22 changes: 22 additions & 0 deletions event_session/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2017 David Vidal<david.vidal@tecnativa.com>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
'name': 'Event Sessions',
'version': '11.0.1.0.0',
'author': 'Tecnativa, '
'Odoo Community Association (OCA)',
"license": "AGPL-3",
'website': 'https://github.com/oca/event.git',
'category': 'Marketing',
'summary': 'Sessions in events',
'depends': ['event'],
'data': [
'security/ir.model.access.csv',
'security/event_session_security.xml',
'views/event_session_view.xml',
'views/event_view.xml',
'wizards/wizard_event_session_view.xml',
],
'installable': True,
}

0 comments on commit 9bb2bd7

Please sign in to comment.