diff --git a/project_usability_misc/README.rst b/project_usability_misc/README.rst new file mode 100644 index 0000000..08ce2c2 --- /dev/null +++ b/project_usability_misc/README.rst @@ -0,0 +1,43 @@ +====================== +project_usability_misc +====================== +Miscellaneous usability improvements for project management. +- Add a "All tasks" button in "Tasks" Menu to display all tasks. + +Installation +============ + +Use Odoo normal module installation procedure to install +``project_usability_misc``. + +Known issues / Roadmap +====================== + +None yet. +Bug Tracker +=========== + +Bugs are tracked on `our issues website `_. In case of +trouble, please check there if your issue has already been +reported. If you spotted it first, help us smashing it by providing a +detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Boris Gallet + +Funders +------- + +The development of this module has been financially supported by: +* Elabore (https://elabore.coop) + + +Maintainer +---------- + +This module is maintained by Elabore. \ No newline at end of file diff --git a/project_usability_misc/__init__.py b/project_usability_misc/__init__.py new file mode 100644 index 0000000..7e99c3a --- /dev/null +++ b/project_usability_misc/__init__.py @@ -0,0 +1 @@ +# Empty __init__.py file for the project_usability_misc module. \ No newline at end of file diff --git a/project_usability_misc/__manifest__.py b/project_usability_misc/__manifest__.py new file mode 100644 index 0000000..632a370 --- /dev/null +++ b/project_usability_misc/__manifest__.py @@ -0,0 +1,23 @@ +# Copyright 2025 Boris Gallet (Elabore) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "project_usability_misc", + "version": "16.0.1.0.0", + "author": "Elabore", + "website": "https://github.com/elabore-coop/project-tools", + "maintainer": "boris.gallet@elabore.coop", + "license": "AGPL-3", + "category": "Tools", + "summary": "Miscellaneous usability improvements for project management", + "depends": [ + "base", + "project", + ], + "data": [ + "views/project_task.xml", + ], + "demo": [], + "installable": True, + "auto_install": False, + "application": False, +} diff --git a/project_usability_misc/i18n/fr.po b/project_usability_misc/i18n/fr.po new file mode 100644 index 0000000..9b32253 --- /dev/null +++ b/project_usability_misc/i18n/fr.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_usability_misc +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-08 08:19+0000\n" +"PO-Revision-Date: 2025-07-08 08:19+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: project_usability_misc +#: model:ir.actions.act_window,name:project_usability_misc.action_all_tasks +#: model:ir.ui.menu,name:project_usability_misc.menu_all_tasks +msgid "All Tasks" +msgstr "Toutes les tâches" \ No newline at end of file diff --git a/project_usability_misc/views/project_task.xml b/project_usability_misc/views/project_task.xml new file mode 100644 index 0000000..59766b8 --- /dev/null +++ b/project_usability_misc/views/project_task.xml @@ -0,0 +1,22 @@ + + + + + + All Tasks + project.task + kanban,tree,form,calendar,pivot,graph,activity + {} + project.view_task_search_form_extended + + + + + + \ No newline at end of file