1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-26 08:05:22 +00:00
webvirtcloud/templates/errors_block.html

17 lines
621 B
HTML
Raw Normal View History

2019-10-28 05:58:24 +00:00
{% load i18n %}
2015-03-03 09:34:09 +00:00
{% if error_messages %}
{% for error in error_messages %}
2015-03-04 15:48:22 +00:00
<!-- Error Messages -->
<div class="row">
<div class="col-lg-12">
2020-05-19 16:53:54 +00:00
<div class="alert alert-danger alert-dismissible" role="alert">
<strong>{% trans 'Error' %}:</strong> {{ error }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
2015-03-04 15:48:22 +00:00
</div>
</div>
2015-03-03 09:34:09 +00:00
</div>
2015-03-04 15:48:22 +00:00
<!-- /.row -->
2015-03-03 09:34:09 +00:00
{% endfor %}
{% endif %}