This commit is contained in:
moritz münch 2021-07-12 11:21:32 +02:00
parent fa3e285330
commit 0938875092

View File

@ -3,9 +3,14 @@
<p><h5>Gesamtwert {{ coin_sum }}</h5></p>
{% include 'coinc/filter_country.html' with countrys=countrys %}
<p><h5>Zuletzt gefunden</h5></p>
{⅝ for coin in recent_coins %}
{% for coin in recent_coins %}
{% if coin.name %}
<p>{{ coin.found_on|date:"d.m.Y" }}: {{ coin.value|floatformat:2 }} € von {{ coin.year }} "{{ coin.name }}" aus {{ coin.country}} von {{ coin.found_by }}</p>
{% else %}
<p>{{ coin.found_on|date:"d.m.Y" }}: {{ coin.value|floatformat:2 }} € von {{ coin.year }} aus {{ coin.country}} von {{ coin.found_by }}</p>
{% endif %}
{% endfor %}
{% else %}
<p>Trage zuerst Länder im Adminbereich ein.</p>{% endif %}
<p>Trage zuerst Länder im Adminbereich ein.</p>
{% endif %}
{% include 'footer.html' %}