[IMP] Improve notification number with infinity symbol when its more than 99.

bzr revid: jra@tinyerp.com-20121119102053-ifq5iifd28qh87oh
This commit is contained in:
Jiten (OpenERP) 2012-11-19 15:50:53 +05:30
commit e17c6b40d9
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@
<t t-esc="menu.name"/>
<t t-if="menu.needaction_enabled and menu.needaction_counter">
<div class="oe_tag oe_tag_dark oe_menu_counter">
<t t-esc="menu.needaction_counter"/>
<t t-if="menu.needaction_counter > 99"> &#8734; </t><t t-if="menu.needaction_counter lt= 99"> <t t-esc="menu.needaction_counter"/> </t>
</div>
</t>
</a>