19 lines
864 B
XML
19 lines
864 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<odoo>
|
||
<data noupdate="0">
|
||
<template id="mail_action_yuthon_will_task_add_comment">
|
||
<p style="margin: 0px;">
|
||
<span>日程事项提醒,</span><br />
|
||
<t t-set="name" t-value="'%s' % (object.name)"/>
|
||
<span style="margin-top: 8px;">请注意你的日程事项 <t t-esc="name" />!
|
||
</span>
|
||
</p>
|
||
<p style="margin-top: 8px; margin-bottom: 10px;">
|
||
<a t-att-href="access_link" t-att-data-oe-model="object._name" t-att-data-oe-id="object.id" style="background-color:#2C65F7; padding: 5px; text-decoration: none; color: #fff; border-radius: 5px;">
|
||
详细信息 <t t-esc="model_description or '详情'"/>
|
||
</a>
|
||
</p>
|
||
</template>
|
||
</data>
|
||
</odoo>
|