From ff7085fba0389f04ca263c107f960e49feb51f27 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 10 Jun 2016 15:09:22 +0200 Subject: [PATCH] Override form_errors.html without "dismiss" icon (see #143) --- src/pretix/base/templates/bootstrap3/form_errors.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/pretix/base/templates/bootstrap3/form_errors.html diff --git a/src/pretix/base/templates/bootstrap3/form_errors.html b/src/pretix/base/templates/bootstrap3/form_errors.html new file mode 100644 index 000000000..02f42fb52 --- /dev/null +++ b/src/pretix/base/templates/bootstrap3/form_errors.html @@ -0,0 +1,5 @@ +
+ {% for error in errors %} + {{ error }}{% if not forloop.last %}
{% endif %} + {% endfor %} +