[FIX] incorrect qweb interpolations
authorXavier Morel <xmo@openerp.com>
Mon, 13 Oct 2014 07:31:59 +0000 (09:31 +0200)
committerXavier Morel <xmo@openerp.com>
Mon, 13 Oct 2014 07:31:59 +0000 (09:31 +0200)
unnecessary, worked by accident and broken by change to interpolation regex in 35f5fb46

addons/hr/static/src/xml/suggestions.xml
addons/mail/static/src/xml/suggestions.xml

index f309562..8160118 100644 (file)
@@ -19,7 +19,7 @@
                 <div class="oe_suggested_item">
                     <div class="oe_suggested_item_image">
                         <a t-attf-href="#model=hr.employee&amp;id=#{result.id}">
-                            <img t-attf-src="{result.image}" t-attf-alt="{result.name}"/>
+                            <img t-att-src="result.image" t-att-alt="result.name"/>
                         </a>
                     </div>
                     <div class="oe_suggested_item_content">
index 9157dcb..8279726 100644 (file)
@@ -20,7 +20,7 @@
                 <div class="oe_suggested_item">
                     <div class="oe_suggested_item_image">
                         <a t-attf-href="#model=mail.group&amp;id=#{result.id}">
-                            <img t-attf-src="{result.image}" t-attf-alt="{result.name}"/>
+                            <img t-att-src="result.image" t-att-alt="result.name"/>
                         </a>
                     </div>
                     <div class="oe_suggested_item_content">