apeters 1d204f26b8 pre-Korves.Net
Signed-off-by: apeters <apeters@korves.net>
2025-05-21 08:05:07 +00:00

13 lines
271 B
HTML

{% if request.warnings %}
<div class="sticky-warning-top notification-warning">
<p>
<b>The following warnings occured during the request:</b>
</p>
<ol>
{% for warning in request.warnings %}
<li>{{ warning }}</li>
{% endfor %}
</ol>
</div>
{% endif %}