12 lines
297 B
Python
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,
|
|
)
|