initial commit
This commit is contained in:
11
odoo/addons/project_html_rtl/models/project_task.py
Normal file
11
odoo/addons/project_html_rtl/models/project_task.py
Normal 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,
|
||||
)
|
||||
Reference in New Issue
Block a user