1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/templates/errors.html

8 lines
455 B
HTML
Raw Normal View History

2015-02-27 09:51:33 +00:00
{% if error_messages %}
{% for error in error_messages %}
2015-02-27 09:28:22 +00:00
<div class="alert alert-danger alert-dismissible" role="danger">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
2015-02-27 09:51:33 +00:00
<strong>Error:</strong> {{ error }}
2015-02-27 09:28:22 +00:00
</div>
{% endfor %}
{% endif %}