filter 2 page remove from filter page
This commit is contained in:
13
Templates/partials/messages.html
Normal file
13
Templates/partials/messages.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% if form.errors %}
|
||||
{% for field in form %}
|
||||
{% for error in field.errors %}
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<strong>-{{field.name}}</strong><br>
|
||||
<strong>{{ error|escape }}</strong> <br>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user