about summary refs log tree commit diff
path: root/gn2/wqflask/templates/base_macro.html
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/templates/base_macro.html')
-rw-r--r--gn2/wqflask/templates/base_macro.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/gn2/wqflask/templates/base_macro.html b/gn2/wqflask/templates/base_macro.html
index 7fcb6fe7..4cb8e1b7 100644
--- a/gn2/wqflask/templates/base_macro.html
+++ b/gn2/wqflask/templates/base_macro.html
@@ -1,11 +1,9 @@
 {% macro flash_me() -%}
     {% with messages = get_flashed_messages(with_categories=true) %}
         {% if messages %}
-        <div class="container">
-            {% for category, message in messages %}
-                <div class="alert {{ category }}" role="alert">{{ message }}</div>
-            {% endfor %}
-        </div>
+        {% for category, message in messages %}
+            <div class="alert {{ category }}" role="alert">{{ message }}</div>
+        {% endfor %}
         {% endif %}
     {% endwith %}
 {% endmacro %}