initial commit

This commit is contained in:
2025-11-25 12:27:53 +03:30
commit f9d16ab078
102 changed files with 11156 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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,
)