blob: 00fc8d65310144c48f1ea3fc975ab8e1fa647762 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-name="mail.FollowButton" owl="1">
<div class="o_FollowButton">
<t t-if="thread.isCurrentPartnerFollowing">
<button class="o_FollowButton_unfollow btn btn-link" t-att-class="{ 'o-following': !state.isUnfollowButtonHighlighted, 'o-unfollow': state.isUnfollowButtonHighlighted }" t-att-disabled="props.isDisabled" t-on-click="_onClickUnfollow" t-on-mouseenter="_onMouseEnterUnfollow" t-on-mouseleave="_onMouseLeaveUnfollow">
<t t-if="state.isUnfollowButtonHighlighted">
<i class="fa fa-times"/> Unfollow
</t>
<t t-else="">
<i class="fa fa-check"/> Following
</t>
</button>
</t>
<t t-else="">
<button class="o_FollowButton_follow btn btn-link" t-att-disabled="props.isDisabled" t-on-click="_onClickFollow">
Follow
</button>
</t>
</div>
</t>
</templates>
|