From cf5f138275077d0a1d100631a92d1d1a06ccda40 Mon Sep 17 00:00:00 2001 From: Timotheus Pokorra Date: Fri, 9 Jan 2026 18:12:59 +0100 Subject: [PATCH] require minimum amount --- apps/monitor/templates/monitor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/monitor/templates/monitor.html b/apps/monitor/templates/monitor.html index a5d2add..4bb3a11 100644 --- a/apps/monitor/templates/monitor.html +++ b/apps/monitor/templates/monitor.html @@ -72,7 +72,7 @@ {% if c.bought_recently %} We have bought within the last 12 months: {{ c.bought_recently|monitorformatcurrency }} {{ c.crypto }}
{% endif %} - {% if c.bought_tax_free %} + {% if c.bought_tax_free > 0.000001 %} We can sell without paying taxes: {{ c.bought_tax_free|monitorformatcurrency }} {{ c.crypto }} for {{ c.value_tax_free|floatformat:2 }} EUR (bought at average price: {{ c.avg_price_tax_free }} EUR)
{% endif %}