mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
17 lines
541 B
HTML
17 lines
541 B
HTML
{% with messages = get_flashed_messages(with_categories=True) %}
|
|
{% if messages %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
{% for message in messages %}
|
|
<div class="alert {% if message[0] != 'error' %}alert-success{% else %}alert-danger{% endif %}">
|
|
<img src="/static/doge_head.png" style="
|
|
width: 64px;
|
|
margin-right: 8px;
|
|
">
|
|
{{ message[1] }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|