Add flashed messages to default site

pull/2/head
Noah 2014-04-11 18:14:10 +00:00
förälder 1cbf93502d
incheckning 07f051f17e
1 ändrade filer med 13 tillägg och 1 borttagningar

Visa fil

@ -39,6 +39,18 @@
</nav>
<div id="content">
{% with messages = get_flashed_messages() %}
{% if messages %}
<h1>Notice!</h1>
<ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
<footer>
@ -56,4 +68,4 @@
{% block scripts %}{% endblock %}
</body>
</html>
</html>