[IMP] sale order line invisible type
[odoo/odoo.git] / addons / mail / static / src / xml / mail_followers.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <template>
3
4     <!--
5         followers main template
6         Template used to display the followers and the actions in a record.
7         -->
8     <div t-name="mail.followers" class="oe_mail_recthread_aside oe_semantic_html_override">
9         <div class="oe_mail_recthread_actions">
10             <button type="button" class="oe_mail_button_follow oe_mail_button_mouseout">Not following</button>
11             <button type="button" class="oe_mail_button_unfollow oe_mail_button_mouseout">Following</button>
12             <button type="button" class="oe_mail_button_followers">Show followers</button>
13         </div>
14         <div class="oe_mail_recthread_followers">
15             <t t-if="widget.params.title">
16                 <h4><t t-raw="widget.params.title"/></h4>
17             </t>
18             <ul class="oe_mail_followers_display"></ul>
19         </div>
20     </div>
21
22     <!--
23         followers.partner template
24         Template used to display a partner following the record
25         -->
26     <li t-name="mail.followers.partner">
27         <img class="oe_mail_thumbnail oe_mail_frame" t-attf-src="{record.avatar_url}"/>
28         <a t-attf-href="#model=res.users&amp;id=#{record.id}"><t t-raw="record.name"/></a>
29     </li>
30
31 </template>