web-dev-qa-db-ja.com

Python Ifステートメントに基づいて条件付きCSSクラスを追加する方法

次の例のPython ifステートメントに基づいて条件付きCSSクラスを追加して、has-success has-feedbackフォーム要素?

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

このようにif条件を記述します。

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