gitextract_cvrop6my/ ├── .copier-answers.yml ├── .editorconfig ├── .eslintrc.yml ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── pre-commit.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .oca_hooks.cfg ├── .pre-commit-config.yaml ├── .prettierrc.yml ├── .pylintrc ├── .pylintrc-mandatory ├── LICENSE ├── README.md ├── project_task_subtask/ │ ├── README.rst │ ├── __init__.py │ ├── __manifest__.py │ ├── data/ │ │ └── subscription_template.xml │ ├── demo/ │ │ └── project_task_subtask_demo.xml │ ├── i18n/ │ │ ├── es_CR.po │ │ ├── fr.po │ │ ├── project_task_subtask.pot │ │ ├── ru.po │ │ └── sl.po │ ├── models/ │ │ ├── __init__.py │ │ └── project_task_subtask.py │ ├── readme/ │ │ ├── CONTRIBUTORS.md │ │ ├── DESCRIPTION.md │ │ └── USAGE.md │ ├── security/ │ │ └── ir.model.access.csv │ ├── static/ │ │ ├── description/ │ │ │ └── index.html │ │ └── src/ │ │ ├── css/ │ │ │ └── kanban_styles.css │ │ ├── js/ │ │ │ ├── one2many_renderer.js │ │ │ └── tours/ │ │ │ └── tour.js │ │ └── xml/ │ │ └── templates.xml │ ├── tests/ │ │ ├── __init__.py │ │ └── test_subtask_sort_button.py │ └── views/ │ ├── assets.xml │ └── project_task_subtask.xml └── setup/ ├── .setuptools-odoo-make-default-ignore ├── README └── project_task_subtask/ └── setup.py