如何在Odoo模板语言中使用

时间:2015-09-10 03:20:35

标签: odoo odoo-8 odoo-website

我尝试使用与Django相同的功能:

<div class="item {% if condition == True %}active{% endif %}">

在Odoo,我有:

<t t-foreach="list" t-as="l">
    <a t-attf-href="/downloads/{{l.id}}" class="list-group-item"><t t-esc="l.name"/></a>
</t>

我需要追加课程&#34;活跃&#34; if&#34; c.id = cat_id&#34;

如何在Odoo完成?

我正在使用:

<t t-foreach="categories" t-as="c">
    <t t-if="c.id == category_id">
    <a t-attf-href="/downloads/{{c.id}}" class="list-group-item active"><t t-esc="c.name"/></a>
    </t>
    <t t-if="c.id != category_id">
    <a t-attf-href="/downloads/{{c.id}}" class="list-group-item"><t t-esc="c.name"/></a>
    </t>
</t>

但是寻找更多的pythonic方式

1 个答案:

答案 0 :(得分:1)

尝试以下,

在窗口小部件中准备一个函数,将值和设置css样式与该窗口小部件的新属性进行比较。

init: function(parent,options){
        //define 1 property to access this in template and set it from calling function
        this.style = '';
        this._super(parent,options);
    }
    get_comparison_result : function(cid,category_id){
        var style = "";
        if (cid != category_id){
            //Add style here
            style = "background-color:white";
        }
        else{
            //Add style here
            style = "background-color:green";
        }
        this.style = style;
        return true;
    }

然后你可以从模板中调用它并将结果赋值给变量并使用这个结果。

<t t-if="widget.get_comparison_result(c.id, category_id)">
    <t t-set="style" t-value="widget.style" />
</t>

<a t-attf-href="/downloads/{{c.id}}" t-att-style="style"><t t-esc="c.name"/>