Skip to content
Snippets Groups Projects
Commit 915e41b1 authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] website_mail_channel: number of members in channel

The members of a channel are stored in channel_partner_ids, they are no longer
a follower of the object (message_follower_ids)
parent 6ff9015a
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@
<div t-esc="group.description" class="text-muted"/>
</div>
<div class="col-md-2">
<i class='fa fa-fw fa-user'/> <t t-esc="len(group.message_follower_ids)"/> members<br />
<i class='fa fa-fw fa-user'/> <t t-esc="len(group.channel_partner_ids)"/> members<br />
<i class='fa fa-fw fa-envelope-o'/> <t t-raw="group_data[group.id]['monthly_message_nbr']"/> messages / month
</div>
<div class="col-md-3">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment