diff options
Diffstat (limited to 'templates/w3/errors_formset.html')
-rw-r--r-- | templates/w3/errors_formset.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/w3/errors_formset.html b/templates/w3/errors_formset.html new file mode 100644 index 0000000..0382973 --- /dev/null +++ b/templates/w3/errors_formset.html @@ -0,0 +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"> + {{ formset.non_form_errors|unordered_list }} + </ul> + </div> +{% endif %} |