[FIX] Fixed aggregates when no enumerator is present

bzr revid: fme@openerp.com-20110927084248-4omtwe9sc8n9b0pl
This commit is contained in:
Fabien Meghazi 2011-09-27 10:42:48 +02:00
parent 41b2ff2784
commit afceb6fdfe
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
<div class="oe_column_heading" t-if="columns.value and columns.header">
<t t-esc="columns.header"/>
</div>
<div t-foreach="columns.aggregates" t-as="aggregate">
<div t-foreach="columns.aggregates or {}" t-as="aggregate">
<i><u><t t-esc="aggregate"/>:</u> <t t-esc="aggregate_value"/></i>
</div>
</div>