Files
selfhost-cloud-compose-stack/odoo/addons/project_html_rtl/__manifest__.py
2025-11-25 12:27:53 +03:30

19 lines
704 B
Python

{
"name": "Project HTML editor + RTL",
"version": "1.0.0",
"summary": "Enable HTML editor for project task descriptions and notes, and force RTL when needed",
"description": "This small addon configures project task description fields to use the HTML editor and injects a small JS to enable RTL rendering in the editor on project task forms.",
"category": "Project",
"author": "Automated",
"depends": ["project", "html_editor"],
"license": "LGPL-3",
"data": [
"views/project_task_view.xml",
],
"installable": True,
"application": False,
"assets": {
"web.assets_backend": ["project_html_rtl/static/src/js/html_field_patch.js"],
},
}