Skip to content

Commit

Permalink
Fix errors_formset.html template
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrybus committed Mar 28, 2024
1 parent 9d04b2b commit 839b256
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crispy_bulma/templates/bulma/errors_formset.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{% if formset.non_form_errors %}
<div class="alert alert-block alert-danger">
{% if formset_error_title %}<h4 class="alert-heading">{{ formset_error_title }}</h4>{% endif %}
<ul class="m-0">
<div class="notification is-danger">
<button class="delete"></button>
{% if formset_error_title %}<div class="has-text-weight-bold">{{ formset_error_title }}</div>{% endif %}
<ul>
{{ formset.non_form_errors|unordered_list }}
</ul>
</div>
Expand Down

0 comments on commit 839b256

Please sign in to comment.