-
-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
28 changed files
with
1,579 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
================= | ||
Project Templates | ||
================= | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:194e0553816f0e3651d753ca8bd2eaa43f6bb892f5c13aef08173c9d3fbe0ac3 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Beta | ||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproject-lightgray.png?logo=github | ||
:target: https://github.com/OCA/project/tree/17.0/project_template | ||
:alt: OCA/project | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/project-17-0/project-17-0-project_template | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/project&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module adds templates for projects. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
1. Have Manager rights for Project group to edit projects and project | ||
templates. | ||
2. Convert project to a project template by setting the "Is Template?" | ||
field on any project. | ||
3. View Templates via the Template filter. | ||
4. Use the "Create Project from Template" link in the drop down menu on | ||
each template while in the Kanban view or the button on the project | ||
template form. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/project/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/project/issues/new?body=module:%20project_template%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Patrick Wilson | ||
|
||
Contributors | ||
------------ | ||
|
||
- Patrick Wilson <[email protected]> | ||
- Alfadil Mustafa <[email protected]> | ||
- Mantas Šniukas <[email protected]> | ||
|
||
Maintainers | ||
----------- | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
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. | ||
|
||
.. |maintainer-patrickrwilson| image:: https://github.com/patrickrwilson.png?size=40px | ||
:target: https://github.com/patrickrwilson | ||
:alt: patrickrwilson | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-patrickrwilson| | ||
|
||
This module is part of the `OCA/project <https://github.com/OCA/project/tree/17.0/project_template>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2019 Patrick Wilson <[email protected]> | ||
# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html). | ||
|
||
{ | ||
"name": "Project Templates", | ||
"summary": """Project Templates""", | ||
"author": "Patrick Wilson, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/project", | ||
"category": "Project Management", | ||
"version": "17.0.1.0.0", | ||
"license": "AGPL-3", | ||
"depends": ["project"], | ||
"data": ["views/project.xml"], | ||
"application": False, | ||
"development_status": "Beta", | ||
"maintainers": ["patrickrwilson"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * project_template | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2022-11-04 14:45+0000\n" | ||
"Last-Translator: Maria Sparenberg <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: de\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.14.1\n" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Create Project From Template" | ||
msgstr "Projekt aus dieser Vorlage erstellen" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_kanban | ||
msgid "Create Project from Template" | ||
msgstr "Projekt aus dieser Vorlage erstellen" | ||
|
||
#. module: project_template | ||
#: model:ir.model.fields,field_description:project_template.field_project_project__is_template | ||
msgid "Is Template" | ||
msgstr "Projekt-Vorlage" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Is Template?" | ||
msgstr "Projekt-Vorlage?" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Non-Templates" | ||
msgstr "Keine Vorlage" | ||
|
||
#. module: project_template | ||
#: model:ir.model,name:project_template.model_project_project | ||
msgid "Project" | ||
msgstr "Projekt" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Templates" | ||
msgstr "Vorlagen" | ||
|
||
#~ msgid "Display Name" | ||
#~ msgstr "Anzeigename" | ||
|
||
#~ msgid "ID" | ||
#~ msgstr "ID" | ||
|
||
#~ msgid "Last Modified on" | ||
#~ msgstr "Zuletzt geändert am" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * project_template | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 13.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2019-11-07 18:02+0000\n" | ||
"Last-Translator: María Asunción Daza <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 3.8\n" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Create Project From Template" | ||
msgstr "Crear Proyecto desde Plantilla" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_kanban | ||
msgid "Create Project from Template" | ||
msgstr "Crear Proyecto desde Plantilla" | ||
|
||
#. module: project_template | ||
#: model:ir.model.fields,field_description:project_template.field_project_project__is_template | ||
msgid "Is Template" | ||
msgstr "Es una Plantilla" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Is Template?" | ||
msgstr "¿Es Una Plantilla?" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Non-Templates" | ||
msgstr "No son Plantillas" | ||
|
||
#. module: project_template | ||
#: model:ir.model,name:project_template.model_project_project | ||
msgid "Project" | ||
msgstr "Proyecto" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Templates" | ||
msgstr "Plantillas" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * project_template | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2021-04-01 03:48+0000\n" | ||
"Last-Translator: Ignacio Buioli <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es_AR\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.3.2\n" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Create Project From Template" | ||
msgstr "Crear Proyecto desde Plantilla" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_kanban | ||
msgid "Create Project from Template" | ||
msgstr "Crear Proyecto desde Plantilla" | ||
|
||
#. module: project_template | ||
#: model:ir.model.fields,field_description:project_template.field_project_project__is_template | ||
msgid "Is Template" | ||
msgstr "Es una Plantilla" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Is Template?" | ||
msgstr "¿Es una Plantilla?" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Non-Templates" | ||
msgstr "No-Plantillas" | ||
|
||
#. module: project_template | ||
#: model:ir.model,name:project_template.model_project_project | ||
msgid "Project" | ||
msgstr "Proyecto" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Templates" | ||
msgstr "Plantillas" | ||
|
||
#~ msgid "Display Name" | ||
#~ msgstr "Mostrar Nombre" | ||
|
||
#~ msgid "ID" | ||
#~ msgstr "ID" | ||
|
||
#~ msgid "Last Modified on" | ||
#~ msgstr "Última Modificación el" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * project_template | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 13.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2021-04-04 16:46+0000\n" | ||
"Last-Translator: Yves Le Doeuff <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: fr\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n > 1;\n" | ||
"X-Generator: Weblate 4.3.2\n" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Create Project From Template" | ||
msgstr "Créer un projet depuis le modèle" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_kanban | ||
msgid "Create Project from Template" | ||
msgstr "Créer un projet depuis le modèle" | ||
|
||
#. module: project_template | ||
#: model:ir.model.fields,field_description:project_template.field_project_project__is_template | ||
msgid "Is Template" | ||
msgstr "Est un modèle" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_form | ||
msgid "Is Template?" | ||
msgstr "Est un modèle ?" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Non-Templates" | ||
msgstr "N'est pas un modèle" | ||
|
||
#. module: project_template | ||
#: model:ir.model,name:project_template.model_project_project | ||
msgid "Project" | ||
msgstr "Projet" | ||
|
||
#. module: project_template | ||
#: model_terms:ir.ui.view,arch_db:project_template.project_template_view_inherit_search | ||
msgid "Templates" | ||
msgstr "Modèles" | ||
|
||
#, fuzzy | ||
#~ msgid "WBS element" | ||
#~ msgstr "Élément SDP" |
Oops, something went wrong.