Is it possible to only render field errors with crispy-forms?
I tried using setting form_show_errors = False but that disables all errors.
The problem I'm having is that i want to use custom non_field_errors but at the moment they get rendered twice.
Source:
{% if form.non_field_errors %}
<div class="alert alert-danger" style="margin-bottom: 0;">
<span class="pficon pficon-error-circle-o"></span>
{% for err in form.non_field_errors %}
<p>{{ err }}</p>
{% endfor %}
</div>
{% endif %}
</div>
</div>
<div class="row">
{% crispy form form.helper %}
</div>
