13 lines
271 B
HTML
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 %}
|