odoo/addons/mail/static/src/xml/mail.xml

21 lines
733 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<template>
<div t-name="ThreadView">
<div class="oe_mail_actions">
<button type="button" class="oe_mail_action_follow">Follow</button>
<button type="button" class="oe_mail_action_unfollow">Unfollow</button>
</div>
<div class="oe_mail_comment">
<textarea rows="2" cols="15">Type your comment</textarea>
<button type="button" class="oe_mail_action_comment">Post comment</button>
</div>
<div>
<p>
<t t-if="tmp=='comment'">Variable tmp valant comment</t>
<t t-if="tmp=='note'">Variable tmp valant note</t>
</p>
</div>
</div>
</template>