如何基于Python If语句添加条件CSS类

时间:2017-05-08 22:18:55

标签: python jinja2 webapp2

如何在以下示例中基于Python if语句添加条件CSS类以显示has-success has-feedback表单元素?

<div class="form-group {% if not error_username %} has-success has-feedback {% endif %}">

1 个答案:

答案 0 :(得分:15)

以这种方式写条件。

<div class="form-group {{'has-success has-feedback' if not error_username }}">