Commit e6b24c78 authored by Serge S. Koval's avatar Serge S. Koval

Merge pull request #167 from manuelbua/patch-1

Classify user-input errors on postback
parents b9ba001b 7b89e625
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<p class="help-block">{{ field.description }}</p> <p class="help-block">{{ field.description }}</p>
{% endif %} {% endif %}
{% if field.errors %} {% if field.errors %}
<ul> <ul class="input-errors">
{% for e in field.errors if e is string %} {% for e in field.errors if e is string %}
<li>{{ e }}</li> <li>{{ e }}</li>
{% endfor %} {% endfor %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment