From bf9f3d5f569f63629c935ba4a9af6f86bcbdb11d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Mon, 11 Nov 2024 00:26:33 +0100 Subject: [PATCH] Use converted price in stats --- games/templates/stats.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/templates/stats.html b/games/templates/stats.html index b75c6f1..af2c012 100644 --- a/games/templates/stats.html +++ b/games/templates/stats.html @@ -253,7 +253,7 @@ {% for purchase in purchased_unfinished %} {% partial purchase-name %} - {{ purchase.price }} + {{ purchase.converted_price }} {{ purchase.date_purchased | date:"d/m/Y" }} {% endfor %} @@ -274,7 +274,7 @@ {% for purchase in all_purchased_this_year %} {% partial purchase-name %} - {{ purchase.price }} + {{ purchase.converted_price }} {{ purchase.date_purchased | date:"d/m/Y" }} {% endfor %}