[IMP]False return when there is no email address in recipient in chatter

bzr revid: vja@tinyerp.com-20130424123425-jo6i7jg8albrbhi2
This commit is contained in:
Vishmita Jadeja (openerp) 2013-04-24 18:04:25 +05:30
parent c366f6becf
commit e18a85f261
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@
<t t-foreach='widget.recipients' t-as='recipient'>
<label t-attf-title="Add as recipient and follower (reason: #{recipient.reason})">
<input type="checkbox" t-att-checked="recipient.checked ? 'checked' : undefined" t-att-data="recipient.email_address"/>
<t t-raw="recipient.name"/> (<t t-raw="recipient.email_address"/>)
<t t-raw="recipient.name"/> <t t-if="recipient.email_address">(<t t-raw="recipient.email_address"/>)</t>
</label>
</t>
</div>