summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/base.html
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-14 14:50:39 +0000
committerubq323 <ubq323>2021-06-14 14:50:39 +0000
commit955cb51e97dbd4f5a68e42ca565f2105e3da6687 (patch)
treead4b0db4296e98fc40a9f97fe05c3e3555fdc608 /apioforum/templates/base.html
parent9e505bc638e0eb7d40f0ce18afdfeb1077a98075 (diff)
put flashed messages in a slightly less silly place, and fix their style slightly
Diffstat (limited to 'apioforum/templates/base.html')
-rw-r--r--apioforum/templates/base.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/apioforum/templates/base.html b/apioforum/templates/base.html
index 7e01d38..37edcb8 100644
--- a/apioforum/templates/base.html
+++ b/apioforum/templates/base.html
@@ -35,13 +35,15 @@
{% endif %}
</ul>
</nav>
- {% for msg in get_flashed_messages() %}
- <div class="flashmsg">{{ msg }}</div>
- {% endfor %}
<div class="header">
{% block header %}{% endblock %}
</div>
+
+ {% for msg in get_flashed_messages() %}
+ <div class="flashmsg">{{ msg }}</div>
+ {% endfor %}
+
<main>
{%block content %}{% endblock %}
</main>