76 lines
2.2 KiB
Python
76 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Tour Genius',
|
|
'version': '14.0.3.0.0',
|
|
'category': 'Human Resources/Training',
|
|
'summary': 'Create interactive training tours and quizzes for Odoo',
|
|
'description': """
|
|
Tour Genius - Interactive Training Platform
|
|
============================================
|
|
|
|
Create interactive guides and training tours for any Odoo screen.
|
|
|
|
Features:
|
|
---------
|
|
* Interactive step-by-step tours
|
|
* Visual tour recorder (Track On/Off)
|
|
* Training plans with progress tracking
|
|
* Quizzes and assessments
|
|
* Gamification with leaderboards
|
|
* Auto-start tours for new users
|
|
|
|
Author: Expert Development Team
|
|
""",
|
|
'author': 'Expert Development Team',
|
|
'website': 'https://www.expert.sa',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'base',
|
|
'mail',
|
|
'web',
|
|
'web_tour',
|
|
],
|
|
'data': [
|
|
# Security
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
# Data (Crons)
|
|
'data/cron_data.xml',
|
|
# Assets (MUST load before views for JS to register)
|
|
'views/assets.xml',
|
|
# Menu (defines root menu)
|
|
'views/menu.xml',
|
|
# Dashboard (is the default action when clicking module)
|
|
'views/dashboard_views.xml',
|
|
# Views
|
|
'views/plan_views.xml',
|
|
'views/topic_views.xml',
|
|
'views/step_views.xml',
|
|
'views/progress_views.xml',
|
|
'views/quiz_views.xml',
|
|
'views/leaderboard_views.xml',
|
|
'views/reminder_views.xml',
|
|
# Demo/Sample Data (loads on install)
|
|
'data/demo_data.xml',
|
|
'data/demo_tours_sales.xml',
|
|
'data/demo_tours_purchase.xml',
|
|
'data/demo_tours_stock.xml',
|
|
'data/demo_tours_account.xml',
|
|
'data/demo_tours_hr.xml',
|
|
'data/demo_plans_steps.xml',
|
|
],
|
|
'demo': [],
|
|
'qweb': [
|
|
'static/src/xml/systray_template.xml',
|
|
'static/src/xml/dashboard_template.xml',
|
|
'static/src/xml/recorder_template.xml',
|
|
'static/src/xml/genius_celebration.xml',
|
|
'static/src/xml/genius_quiz_popup.xml',
|
|
'static/src/xml/genius_tip.xml',
|
|
],
|
|
'images': ['static/description/icon.png'],
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
}
|