次の例のPython ifステートメントに基づいて条件付きCSSクラスを追加して、has-success has-feedback
フォーム要素?
<div class="form-group {% if not error_username %} has-success has-feedback {% endif %}">
このようにif条件を記述します。
<div class="form-group {{'has-success has-feedback' if not error_username }}">