From 02677cdf1acc80865bb5919eabad4d0100bb0431 Mon Sep 17 00:00:00 2001 From: nanoy Date: Sun, 16 Dec 2018 09:12:57 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20affichage=20alcool=20ing=C3=A9r=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Arrondi à 2 décimale (ou moins si pas besoin) la quantité d'alcool ingérée sur le profil. Close #8. --- users/templates/users/profile.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/templates/users/profile.html b/users/templates/users/profile.html index 956f460..5f931e6 100644 --- a/users/templates/users/profile.html +++ b/users/templates/users/profile.html @@ -42,7 +42,7 @@
  • Groupe(s) : {{user.groups.all|join:", "}}
  • Position au classement : {{user.profile.rank}} - Quantité d'alcool ingérée : {{user.profile.alcohol}} kg + Quantité d'alcool ingérée : {{user.profile.alcohol | floatformat:"-2"}} kg