如何在以下示例中基于Python if语句添加条件CSS类以显示has-success has-feedback
表单元素?
<div class="form-group {% if not error_username %} has-success has-feedback {% endif %}">
答案 0 :(得分:15)
以这种方式写条件。
<div class="form-group {{'has-success has-feedback' if not error_username }}">