将循环中的i与传递的值进行比较

时间:2012-03-09 15:51:15

标签: python google-app-engine django-templates

我在Google App Engine wepage中使用了Django 1.2模板。

我将agemin传递给模板以在html表单中选择标记选项。 但下面的代码不起作用。

agerange(18,100)

创建

如何将'i'与agemin进行比较?

    {{agemin}} //this is for example 23
    <select name=agemin><BR>
        {% for i in age%}
            <option {% if i == agemin %}selected{% endif %}>{{ i }}</option>
        {%endfor%}

    </select>

1 个答案:

答案 0 :(得分:1)

使用ifequal标记:

{% ifequal agemin i %}