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

12 lines
297 B
Python

from odoo import models, fields
class ProjectTask(models.Model):
_inherit = "project.task"
rtl_enable = fields.Boolean(
string="Force RTL in HTML editor",
help="When set, the HTML editor on this task will render in right-to-left direction",
default=False,
)