diff --git a/project_website_kanban_view/README.rst b/project_website_kanban_view/README.rst new file mode 100644 index 000000000..3c80f06e3 --- /dev/null +++ b/project_website_kanban_view/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Website Project Kanban View +=========================== +This module is used for viewing kanban view of Project in Website + +Configuration +============= +- Additional configuration not required + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V17)Anfas Faisal K, + (V18) Gayathri V +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/project_website_kanban_view/__init__.py b/project_website_kanban_view/__init__.py new file mode 100644 index 000000000..d7f4caa2a --- /dev/null +++ b/project_website_kanban_view/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V(odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import controllers +from . import models diff --git a/project_website_kanban_view/__manifest__.py b/project_website_kanban_view/__manifest__.py new file mode 100644 index 000000000..d5da9d9d4 --- /dev/null +++ b/project_website_kanban_view/__manifest__.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author:Gayathri V(odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': 'Website Project Kanban View', + 'version': '18.0.1.0.0', + 'category': 'Website,Project', + 'summary': 'Project & Task kanban view in Website', + 'description': "Geminate comes with a feature to introduce kanban view for " + "project and their related task on website. it will show " + "the progress of each task based on their stage and due " + "date. ", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['project', 'website'], + 'data': [ + 'data/ir_config_parameter_data.xml', + 'views/kanban_view_project_templates.xml', + 'views/kanban_view_task_templates.xml', + 'views/res_config_settings_views.xml' + ], + 'assets': { + 'web.assets_frontend': [ + '/project_website_kanban_view/static/src/css/style.css', + 'https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css', + 'https://cdn.jsdelivr.net/npm/jquery@3.6.4/dist/jquery.slim.min.js', + 'https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js', + ], + }, + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/project_website_kanban_view/controllers/__init__.py b/project_website_kanban_view/controllers/__init__.py new file mode 100644 index 000000000..0e75e80c8 --- /dev/null +++ b/project_website_kanban_view/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V(odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import project_website_kanban_view diff --git a/project_website_kanban_view/controllers/project_website_kanban_view.py b/project_website_kanban_view/controllers/project_website_kanban_view.py new file mode 100644 index 000000000..35fc0a802 --- /dev/null +++ b/project_website_kanban_view/controllers/project_website_kanban_view.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import http, _ +from odoo.exceptions import ValidationError +from odoo.http import request +from odoo.addons.portal.controllers.portal import CustomerPortal, \ + pager as portal_pager + + +class ProjectCustomerPortal(CustomerPortal): + """ + This class extends the CustomerPortal class in Odoo and provides + custom functionality for managing projects and tasks from the + customer portal. + """ + + @http.route(['/my/projects', '/my/projects/page/'], type='http', + auth="user", website=True) + def portal_my_projects( + self, page=1, date_begin=None, date_end=None, sortby=None, + viewtype='kanban', **kw): + """ + Route to display a list of projects for the logged-in user in the + customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param viewtype: Type of view to display (e.g., kanban). + :return: + """ + res = super( + ProjectCustomerPortal, self).portal_my_projects( + page=page, date_begin=date_begin, date_end=date_end, sortby=sortby, + viewtype='kanban', + **kw) + res.qcontext.update({'viewtype': viewtype}) + return res + + @http.route(['/my/tasks', '/my/tasks/page/'], type='http', + auth="user", website=True) + def portal_my_tasks(self, page=1, date_begin=None, date_end=None, + sortby=None, filterby=None, search=None, + search_in='content', groupby=None, viewtype='kanban', + **kw): + """ + Route to display a list of tasks for the logged-in user in the + customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param filterby: Filter option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param viewtype: Type of view to display (e.g., kanban). + :return: HTTP response with the project details. + """ + res = super(ProjectCustomerPortal, self).portal_my_tasks( + page=page, date_begin=date_begin, date_end=date_end, + sortby=sortby, filterby=filterby, search=search, + search_in=search_in, groupby=groupby, viewtype=viewtype, **kw) + searchbar_filters = self._get_my_tasks_searchbar_filters() + domain = searchbar_filters.get(filterby, searchbar_filters.get('all'))[ + 'domain'] + values = self._prepare_tasks_values(page, date_begin, date_end, sortby, + search, search_in, groupby, + domain=domain) + pager_vals = values['pager'] + pager_vals['url_args'].update(viewtype=viewtype) + pager = portal_pager(**pager_vals) + res.qcontext.update({ + 'viewtype': viewtype, + "pager": pager + }) + return res + + @http.route(['/my/projects/', + '/my/projects//page/'], type='http', + auth="public", website=True) + def portal_my_project(self, project_id=None, access_token=None, page=1, + date_begin=None, date_end=None, sortby=None, + search=None, search_in='content', groupby=None, + task_id=None, viewtype='kanban', **kw): + """ + Route to display a specific project and its details in the customer + portal. + + :param project_id: ID of the project to display. + :param access_token: Access token for security. + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param task_id: ID of the task within the project. + :param viewtype: Type of view to display (e.g., kanban). + :return: HTTP response with the project details. + """ + res = super(ProjectCustomerPortal, self).portal_my_project( + project_id=project_id, access_token=access_token, page=page, + date_begin=date_begin, date_end=date_end, sortby=sortby, + search=search, search_in=search_in, groupby=groupby, + task_id=task_id, viewtype='kanban', **kw) + res.qcontext.update({'viewtype': viewtype}) + return res + + def _prepare_tasks_values(self, page, date_begin, date_end, sortby, search, + search_in, groupby, url="/my/tasks", domain=None, + su=False, project=False): + """ + Prepare the values for displaying tasks in the customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param url: URL for the tasks page. + :param domain: Filter domain for tasks. + :return: Dictionary containing values for tasks display. + """ + res = super(ProjectCustomerPortal, self)._prepare_tasks_values( + page=page, date_begin=date_begin, date_end=date_end, sortby=sortby, + search=search, search_in=search_in, groupby=groupby, url=url, + domain=domain, su=su, project=project) + task_per_page = int( + request.env['ir.config_parameter'].sudo().get_param( + "project_website_kanban_view.task_per_pager")) + self._items_per_page = task_per_page + if task_per_page == 0: + raise ValidationError(_( + "Task per page cannot be 0. Please configure a valid value.")) + return res diff --git a/project_website_kanban_view/data/ir_config_parameter_data.xml b/project_website_kanban_view/data/ir_config_parameter_data.xml new file mode 100644 index 000000000..fccf840ee --- /dev/null +++ b/project_website_kanban_view/data/ir_config_parameter_data.xml @@ -0,0 +1,10 @@ + + + + + + project_website_kanban_view.task_per_pager + 80 + + + diff --git a/project_website_kanban_view/doc/RELEASE_NOTES.md b/project_website_kanban_view/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a62053dfd --- /dev/null +++ b/project_website_kanban_view/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 13.11.2024 +#### Version 18.0.1.0.0 +#### ADD + +- Initial commit for Website Project Kanban View diff --git a/project_website_kanban_view/models/__init__.py b/project_website_kanban_view/models/__init__.py new file mode 100644 index 000000000..783926db8 --- /dev/null +++ b/project_website_kanban_view/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import res_config_settings diff --git a/project_website_kanban_view/models/res_config_settings.py b/project_website_kanban_view/models/res_config_settings.py new file mode 100644 index 000000000..d813acff5 --- /dev/null +++ b/project_website_kanban_view/models/res_config_settings.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """ + This class extends the 'res.config.settings' model to add a new + configuration parameter for controlling the number of tasks per page in the + kanban view. + """ + _inherit = 'res.config.settings' + + task_per_pager = fields.Integer( + string="Task per page in Kanban View", + help="Minimum number of tasks per page.", + config_parameter='project_website_kanban_view.task_per_pager') diff --git a/project_website_kanban_view/static/description/assets/cybro-icon.png b/project_website_kanban_view/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/cybro-icon.png differ diff --git a/project_website_kanban_view/static/description/assets/cybro-odoo.png b/project_website_kanban_view/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/cybro-odoo.png differ diff --git a/project_website_kanban_view/static/description/assets/h2.png b/project_website_kanban_view/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/h2.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/arrows-repeat.svg b/project_website_kanban_view/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-1.png b/project_website_kanban_view/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/banner-1.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/banner-2.svg b/project_website_kanban_view/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-bg.png b/project_website_kanban_view/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/banner-bg.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/banner-bg.svg b/project_website_kanban_view/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-call.svg b/project_website_kanban_view/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-mail.svg b/project_website_kanban_view/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-pattern.svg b/project_website_kanban_view/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/banner-promo.svg b/project_website_kanban_view/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/brand-pair.svg b/project_website_kanban_view/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/capture (1).png b/project_website_kanban_view/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/capture (1).png differ diff --git a/project_website_kanban_view/static/description/assets/icons/check.png b/project_website_kanban_view/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/check.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/chevron.png b/project_website_kanban_view/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/chevron.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/close-icon.svg b/project_website_kanban_view/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/cogs.png b/project_website_kanban_view/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/cogs.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/collabarate-icon.svg b/project_website_kanban_view/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_website_kanban_view/static/description/assets/icons/consultation.png b/project_website_kanban_view/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/consultation.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/cybro-logo.png b/project_website_kanban_view/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/cybro-logo.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/down.svg b/project_website_kanban_view/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/project_website_kanban_view/static/description/assets/icons/ecom-black.png b/project_website_kanban_view/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/ecom-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/education-black.png b/project_website_kanban_view/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/education-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/faq.png b/project_website_kanban_view/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/faq.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/feature-icon.svg b/project_website_kanban_view/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/feature.png b/project_website_kanban_view/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/feature.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/gear.svg b/project_website_kanban_view/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/hero.gif b/project_website_kanban_view/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..4ee84aa50 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/hero.gif differ diff --git a/project_website_kanban_view/static/description/assets/icons/hire-odoo.svg b/project_website_kanban_view/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/hotel-black.png b/project_website_kanban_view/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/hotel-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/img.png b/project_website_kanban_view/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/img.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/license.png b/project_website_kanban_view/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/license.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/life-ring-icon.svg b/project_website_kanban_view/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/lifebuoy.png b/project_website_kanban_view/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/lifebuoy.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/mail.svg b/project_website_kanban_view/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png b/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/notes.png b/project_website_kanban_view/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/notes.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/notification icon.svg b/project_website_kanban_view/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/odoo-consultancy.svg b/project_website_kanban_view/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/odoo-licencing.svg b/project_website_kanban_view/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_website_kanban_view/static/description/assets/icons/odoo-logo.png b/project_website_kanban_view/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/odoo-logo.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/patter.svg b/project_website_kanban_view/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/pattern1.png b/project_website_kanban_view/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/pattern1.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/photo-capture.png b/project_website_kanban_view/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/photo-capture.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/pos-black.png b/project_website_kanban_view/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/pos-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/puzzle-piece-icon.svg b/project_website_kanban_view/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/puzzle.png b/project_website_kanban_view/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/puzzle.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/replace-icon.svg b/project_website_kanban_view/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/restaurant-black.png b/project_website_kanban_view/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/restaurant-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/screenshot-main.png b/project_website_kanban_view/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/screenshot-main.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/screenshot.png b/project_website_kanban_view/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/screenshot.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/service-black.png b/project_website_kanban_view/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/service-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/skype-fill.svg b/project_website_kanban_view/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/skype.png b/project_website_kanban_view/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/skype.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/skype.svg b/project_website_kanban_view/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_website_kanban_view/static/description/assets/icons/star-1.svg b/project_website_kanban_view/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/star-2.svg b/project_website_kanban_view/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/support.png b/project_website_kanban_view/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/support.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/test-1 - Copy.png b/project_website_kanban_view/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/test-1 - Copy.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/test-1.png b/project_website_kanban_view/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/test-1.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/test-2.png b/project_website_kanban_view/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/test-2.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/trading-black.png b/project_website_kanban_view/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/trading-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/training.png b/project_website_kanban_view/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/training.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/translate.svg b/project_website_kanban_view/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/update.png b/project_website_kanban_view/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/update.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/user.png b/project_website_kanban_view/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/user.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/video.png b/project_website_kanban_view/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/video.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/whatsapp.png b/project_website_kanban_view/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/whatsapp.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/wrench-icon.svg b/project_website_kanban_view/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/icons/wrench.png b/project_website_kanban_view/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/wrench.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/Cybrosys R.png b/project_website_kanban_view/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/Cybrosys R.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png b/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/categories.png b/project_website_kanban_view/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/categories.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/check-box.png b/project_website_kanban_view/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/check-box.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/compass.png b/project_website_kanban_view/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/compass.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/corporate.png b/project_website_kanban_view/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/corporate.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/customer-support.png b/project_website_kanban_view/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/customer-support.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png b/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/email.svg b/project_website_kanban_view/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/features.png b/project_website_kanban_view/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/features.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/logo.png b/project_website_kanban_view/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/logo.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/phone.svg b/project_website_kanban_view/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_website_kanban_view/static/description/assets/misc/pictures.png b/project_website_kanban_view/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/pictures.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/pie-chart.png b/project_website_kanban_view/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/pie-chart.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/right-arrow.png b/project_website_kanban_view/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/right-arrow.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg b/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/star.png b/project_website_kanban_view/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/star.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/support (1) 1.svg b/project_website_kanban_view/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/support-email.svg b/project_website_kanban_view/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/support.png b/project_website_kanban_view/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/support.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/tick-mark.svg b/project_website_kanban_view/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/whatsapp 1.svg b/project_website_kanban_view/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/whatsapp.png b/project_website_kanban_view/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/whatsapp.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/whatsapp.svg b/project_website_kanban_view/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/modules/1.gif b/project_website_kanban_view/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/1.gif differ diff --git a/project_website_kanban_view/static/description/assets/modules/1.jpg b/project_website_kanban_view/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..08bbafeb6 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/1.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/2.gif b/project_website_kanban_view/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/2.gif differ diff --git a/project_website_kanban_view/static/description/assets/modules/2.jpg b/project_website_kanban_view/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..5d694c069 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/2.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/2.png b/project_website_kanban_view/static/description/assets/modules/2.png new file mode 100644 index 000000000..a1209a01f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/2.png differ diff --git a/project_website_kanban_view/static/description/assets/modules/3.jpg b/project_website_kanban_view/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..3d171226b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/3.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/3.png b/project_website_kanban_view/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/3.png differ diff --git a/project_website_kanban_view/static/description/assets/modules/4.jpg b/project_website_kanban_view/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..1f3f2e27f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/4.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/4.png b/project_website_kanban_view/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/4.png differ diff --git a/project_website_kanban_view/static/description/assets/modules/5.jpg b/project_website_kanban_view/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..0db717519 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/5.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/5.png b/project_website_kanban_view/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/5.png differ diff --git a/project_website_kanban_view/static/description/assets/modules/6.jpg b/project_website_kanban_view/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/6.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image (1).jpeg b/project_website_kanban_view/static/description/assets/modules/module_image (1).jpeg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image (1).jpeg differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image (1).png b/project_website_kanban_view/static/description/assets/modules/module_image (1).png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image (1).png differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image (2).png b/project_website_kanban_view/static/description/assets/modules/module_image (2).png new file mode 100644 index 000000000..a5dc79613 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image (2).png differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image-1.jpeg b/project_website_kanban_view/static/description/assets/modules/module_image-1.jpeg new file mode 100644 index 000000000..31f066e9c Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image-1.jpeg differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image.jpeg b/project_website_kanban_view/static/description/assets/modules/module_image.jpeg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image.jpeg differ diff --git a/project_website_kanban_view/static/description/assets/modules/module_image.png b/project_website_kanban_view/static/description/assets/modules/module_image.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/module_image.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/1.png b/project_website_kanban_view/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..c92c83e91 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/1.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/10.png b/project_website_kanban_view/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..e16acafbf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/10.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/2.png b/project_website_kanban_view/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..220ffd71d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/2.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/3.png b/project_website_kanban_view/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..36e45fc33 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/3.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/4.png b/project_website_kanban_view/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..b56761534 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/4.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/5.png b/project_website_kanban_view/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..809d15ab6 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/5.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/6.png b/project_website_kanban_view/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..61fd58c6b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/6.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/7.png b/project_website_kanban_view/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..0c05f36d6 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/7.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/8.png b/project_website_kanban_view/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..f2ea11832 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/8.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/9.png b/project_website_kanban_view/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..2941a6a27 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/9.png differ diff --git a/project_website_kanban_view/static/description/assets/y18.jpg b/project_website_kanban_view/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/y18.jpg differ diff --git a/project_website_kanban_view/static/description/banner.jpg b/project_website_kanban_view/static/description/banner.jpg new file mode 100644 index 000000000..a0b756247 Binary files /dev/null and b/project_website_kanban_view/static/description/banner.jpg differ diff --git a/project_website_kanban_view/static/description/icon.png b/project_website_kanban_view/static/description/icon.png new file mode 100644 index 000000000..5fc84e43e Binary files /dev/null and b/project_website_kanban_view/static/description/icon.png differ diff --git a/project_website_kanban_view/static/description/index.html b/project_website_kanban_view/static/description/index.html new file mode 100644 index 000000000..e336ba465 --- /dev/null +++ b/project_website_kanban_view/static/description/index.html @@ -0,0 +1,1229 @@ + + + + + + Website Project Kanban View + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Project & Task Kanban View In Website +

+

Website Project Kanban View +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Project Kanban view on website . +
+
+
+
+
+
+ +
+
+ Enjoy real-time updates and status tracking + for projects and tasks as they move through + different stages . +
+
+
+
+
+
+ +
+
+ Project Task Kanban view on website . +
+
+
+
+
+
+ +
+
+ Keep track of task deadlines and due dates, + ensuring timely completion of project tasks + . +
+
+
+
+
+
+ +
+
+ Monitor progress of task based on their + stage direct from website . +
+
+
+
+
+ +
+
+
+ WEBSITE PROJECT KANBAN VIEW +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Website Project Kanban + + View +

+
+
+

+ Click "Projects" To See + Project Kanban View. +

+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + Click "Tasks" To See Project Tasks + + Kanban View. +

+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + SortBy Filter in Project + + Task. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + FilterBy Filter in Project + + Task. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + GroupBy Filter in Project + + Task. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + SearchBy Filter in Project + + Task. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + Adjust the number of tasks displayed + + per page. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + In the Task Kanban view, you can view this setting + + + in action. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ Project Kanban view on website .

+
+ +
+
+
+
+
+
+ +
+

+ Project Task Kanban view on website .

+
+
+
+
+
+
+
+ +
+

+ Monitor progress of task based on their stage direct from website .

+
+ +
+
+
+
+
+
+ +
+

+ Enjoy real-time updates and status tracking for projects and tasks as they move through different stages .

+
+ +
+
+
+
+
+
+ +
+

+ Keep track of task deadlines and due dates, ensuring timely completion of project tasks .

+
+
+
+
+
+
+
+
+
+ +
+ +
+ +
+

+ The Project Website Kanban View module provides a kanban-style layout on your website, enabling team members and clients to visually track projects and tasks. This view makes it easier to manage workflows and monitor project progress. +

+
+
+ +
+ +
+

+ Yes, with appropriate permissions set, clients can view project progress and task statuses in real-time. However, client interactions (like creating or moving tasks) are restricted for security and project management purposes. +

+
+
+ +
+ +
+

+ Yes, tasks can be filtered and grouped based on criteria like project, priority, or stage to provide a more organized and focused view of the work. This feature helps teams and clients to quickly locate specific tasks or project details. +

+
+
+ +
+ +
+

+ After installing the module, allow projects to display in kanban format on your website for easy viewing and tracking. +

+
+
+
+ +
+
+
+
+
+
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 13th November, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/project_website_kanban_view/static/src/css/style.css b/project_website_kanban_view/static/src/css/style.css new file mode 100644 index 000000000..d81296c7e --- /dev/null +++ b/project_website_kanban_view/static/src/css/style.css @@ -0,0 +1,180 @@ +body { background-color: #ececec; } + +.header-menu-section{ background-color:#fff; padding: 12px 10px; } + +.left-menu a img{ width:12%; } + +.left-menu span { color:#767977; } + +.left-menu a { color:#767977; text-decoration: none; font-size: 14px; } + +.right-menu span {color:#767977; float: left; font-size: 14px; + line-height: 27px; } + +.right-menu .dropdown button { height: 26px; + padding-top: 0px; + font-size: 14px; + margin-left: 10px; background-color:#974f79; } + + .thumbnail-view-icon{ + width:24px; height: 24px; float: right; + } + + .list-view-icon{ + width:24px; height: 24px; float: right; + } + + .project-container{ + background-color: #fff; + border: 1px solid #333; + color:#45a2a1; + height: 135px; + overflow: auto; + } + + .project-container h6{ font-weight: 600; } + .project-container .tasks a{ + color:#45a2a1; + text-decoration: none; + } + + .project-container .tasks{ + font-size: 14px; + margin-top: 40px; + } + + .project-container .tasks a{ + font-weight: 600; + } + + .search-container button{ + background-color: #8c4e77; + height: 30px; + width: 38px; + display: flex; + align-items: center; + justify-content: center; + } + + .search-container button img { + width:20px; + } + + .search-container input{ height: 30px; } + + .input-group-append-btn button{ + -webkit-border-top-left-radius: 8px; + -webkit-border-bottom-left-radius: 8px; + -moz-border-radius-topleft: 8px; + -moz-border-radius-bottomleft: 8px; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; + } + + .container-section-tasks { + width: 260px; + float: left; + } + + .progress-number{ + color:#000; + float: right; + margin-top: -5px; + } + + .progres-bar{ + background-color: #dedfe8; + height: 12px; + width:202px; + float: left; + position: relative; + } + .container-section-tasks h5 { font-weight: 600; font-size: 17px; } + + .progres-bar-green { + width: 28px; + height: 12px; + background-color:#00b44e; + float: left; + } + + .progres-bar-red { + width:63px; + height: 12px; + background-color:#f60034; + float: left; + } + .progres-bar-yellow { + width:63px; + height: 12px; + background-color:#FFA500; + float: left; + } + + .task-box { + background-color: #fff; + } + + .task-box h6{ + font-size: 14px; + margin-bottom: 0px; + color: #767977; + } + + .task-box span { + font-size: 12px; + font-style: italic; + margin-right:0px !important; + } + + .clock img { width: 6%; } + .input-button { + width:10px; + height:10px; + border-radius: 50%; + background-color: #00b44e; + } + + .input-button-red { + width:10px; + height:10px; + border-radius: 50%; + background-color:red; + } + + .input-button-gray { + width:10px; + height:10px; + border-radius: 50%; + background-color:#dedfe8; + } + + .profile-pic-container{ + justify-content: space-between; + } + + .task-box{ + border: 1px solid #ccc; + word-wrap: break-word; + } + + .task-box .w-75{ padding-right: 11px;} + + .date-task-box { + font-style: normal !important; + color:#f60034 !important ; + font-weight: bold; + } + + .container-tasks { + overflow-x: scroll; + width:100%; + display:-webkit-box; + padding-bottom: 10px; + display: flex; + gap: 15px; + } + + .img-task { + margin-top: 22px; + } diff --git a/project_website_kanban_view/static/src/images/clock.png b/project_website_kanban_view/static/src/images/clock.png new file mode 100644 index 000000000..e7ce4fe28 Binary files /dev/null and b/project_website_kanban_view/static/src/images/clock.png differ diff --git a/project_website_kanban_view/static/src/images/img-list-view.png b/project_website_kanban_view/static/src/images/img-list-view.png new file mode 100644 index 000000000..20e518490 Binary files /dev/null and b/project_website_kanban_view/static/src/images/img-list-view.png differ diff --git a/project_website_kanban_view/static/src/images/img-thumbnail-view.png b/project_website_kanban_view/static/src/images/img-thumbnail-view.png new file mode 100644 index 000000000..bea994407 Binary files /dev/null and b/project_website_kanban_view/static/src/images/img-thumbnail-view.png differ diff --git a/project_website_kanban_view/views/kanban_view_project_templates.xml b/project_website_kanban_view/views/kanban_view_project_templates.xml new file mode 100644 index 000000000..7306ea8c6 --- /dev/null +++ b/project_website_kanban_view/views/kanban_view_project_templates.xml @@ -0,0 +1,166 @@ + + + + + + + + + diff --git a/project_website_kanban_view/views/kanban_view_task_templates.xml b/project_website_kanban_view/views/kanban_view_task_templates.xml new file mode 100644 index 000000000..0901c9868 --- /dev/null +++ b/project_website_kanban_view/views/kanban_view_task_templates.xml @@ -0,0 +1,152 @@ + + + + + + + + diff --git a/project_website_kanban_view/views/res_config_settings_views.xml b/project_website_kanban_view/views/res_config_settings_views.xml new file mode 100644 index 000000000..f4740224f --- /dev/null +++ b/project_website_kanban_view/views/res_config_settings_views.xml @@ -0,0 +1,25 @@ + + + + + res.config.settings.view.form.inherit.project.website.kanban.view + res.config.settings + + + +

Tasks

+
+
+
+
+
+ +
+
+
+
+
+
+