Jinja2模板没有正确渲染if-elif-else语句

时间:2014-02-25 19:50:46

标签: python css if-statement jinja2

我正在尝试使用jinja2模板中的css设置文本颜色。在下面的代码中,我想将输出字符串设置为以特定字体颜色打印(如果变量包含字符串)。每次生成模板虽然由于else语句而以红色打印,但它永远不会看到前两个条件,即使输出应该匹配,我可以告诉变量的输出是什么,当表生成时它是如预期的那样。我知道我的css是正确的,因为默认情况下打印的字符串为红色。

我的第一个想法是用引号括起我正在检查的字符串,但这不起作用。接下来是jinja没有扩展RepoOutput[RepoName.index(repo)]但是上面的for循环工作,RepoName正确扩展。我知道如果我添加大括号,它会打印变量,我相当肯定会破坏模板或者不起作用。

我尝试查看这些网站并查看了全局表达式列表,但找不到任何类似于我的示例或者可以进一步查看的方向。

http://jinja.pocoo.org/docs/templates/#if

http://wsgiarea.pocoo.org/jinja/docs/conditions.html

   {% for repo in RepoName %}
       <tr>
          <td> <a href="http://mongit201.be.monster.com/icinga/{{ repo }}">{{ repo }}</a> </td>
       {% if error in RepoOutput[RepoName.index(repo)] %}
          <td id=error> {{ RepoOutput[RepoName.index(repo)] }} </td> <!-- I want this in green if it is up-to-date, otherwise I want it in red -->
       {% elif Already in RepoOutput[RepoName.index(repo) %}
          <td id=good> {{ RepoOutput[RepoName.index(repo)] }} </td>   <!-- I want this in green if it is up-to-date, otherwise I want it in red -->
       {% else %}
            <td id=error> {{ RepoOutput[RepoName.index(repo)] }} </td> <!-- I want this in green if it is up-to-date, otherwise I want it in red -->
       </tr>

       {% endif %}
   {% endfor %}

由于

1 个答案:

答案 0 :(得分:52)

您正在测试error中是否存在变量 AlreadyRepoOutput[RepoName.index(repo)]的值。如果这些变量不存在,则使用undefined object

因此,您的ifelif测试都是错误的; RepoOutput [RepoName.index(repo)]的值中没有未定义的对象。

我认为您想测试某些字符串是否在值中:

{% if "error" in RepoOutput[RepoName.index(repo)] %}
    <td id="error"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% elif "Already" in RepoOutput[RepoName.index(repo) %}
    <td id="good"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% else %}
    <td id="error"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% endif %}
</tr>

我做的其他更正:

  • 使用{% elif ... %}代替{$ elif ... %}
  • </tr>标记移出if条件结构,它必须始终存在。
  • id属性
  • 周围添加引号

请注意,您很可能希望在此处使用 class 属性,而不是id,后者必须具有在HTML文档中必须唯一的值

就个人而言,我在这里设置了类值并减少了重复:

{% if "Already" in RepoOutput[RepoName.index(repo)] %}
    {% set row_class = "good" %}
{% else %}
    {% set row_class = "error" %}
{% endif %}
<td class="{{ row_class }}"> {{ RepoOutput[RepoName.index(repo)] }} </td>