diff --git a/scipost/templates/tags/bootstrap/form.html b/scipost/templates/tags/bootstrap/form.html
index 97a499eb78aedd6a105adde185ac06df059b55c1..be6f109105552d0574b2525192bb9be676498a8a 100644
--- a/scipost/templates/tags/bootstrap/form.html
+++ b/scipost/templates/tags/bootstrap/form.html
@@ -1,10 +1,10 @@
 {% if form.non_field_errors %}
-    <div class="alert alert-danger">
-        <a class="close" data-dismiss="alert">&times;</a>
-        {% for non_field_error in form.non_field_errors %}
-             {{ non_field_error }}
-        {% endfor %}
-    </div>
+    {% for non_field_error in form.non_field_errors %}
+        <div class="alert alert-danger">
+            <a class="close" data-dismiss="alert">&times;</a>
+            {{ non_field_error }}
+        </div>
+    {% endfor %}
 {% endif %}
 
 {% for field in form.hidden_fields %}