feat: move search location not found error to the place where the location would have been shown

This commit is contained in:
moanos [he/him] 2025-01-07 15:59:22 +01:00
parent 7c076e0bc3
commit 4576ac68e0

View File

@ -31,13 +31,13 @@
{% if location %}
<b>{% translate 'Gefundener Suchort:' %}</b> {{ location }}
{% endif %}
{% if place_not_found %}
<p class="error">{% translate "Ort nicht gefunden" %}</p>
{% endif %}
</form>
<div class="card half">
{% include "fellchensammlung/partials/partial-map.html" %}
</div>
</div>
{% if place_not_found %}
<p class="error">{% translate "Ort nicht gefunden" %}</p>
{% endif %}
{% include "fellchensammlung/lists/list-adoption-notices.html" %}
{% endblock %}