Handle nonexistent PLZs

This commit is contained in:
Jannis Portmann 2022-01-17 17:11:38 +01:00
parent 7a3749c105
commit 8e7da7511a
2 changed files with 22 additions and 13 deletions

View file

@ -9,6 +9,11 @@
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('error') %}
<div class="alert alert-danger" role="alert">
{{ message }}
</div>
{% endfor %}
<h2><i class="fas fa-filter"></i>Filter</h2>
{{ form_start(filter_form) }}
@ -53,6 +58,6 @@
{% endfor %}
</div>
{% else %}
<div class="alert alert-warning" role="alert">There are currently no active offers.</div>
<div class="alert alert-warning" role="alert">There are no active offers with the current filter.</div>
{% endif %}
{% endblock %}