diff --git a/gestion/templates/gestion/kegs_list.html b/gestion/templates/gestion/kegs_list.html
index 764d7e8..32b4035 100644
--- a/gestion/templates/gestion/kegs_list.html
+++ b/gestion/templates/gestion/kegs_list.html
@@ -33,6 +33,7 @@
Quantité vendue |
Montant vendu |
Prix du fût |
+ Degré |
Historique |
Administrer |
@@ -47,6 +48,7 @@
{{ kegH.quantitySold }} L |
{{ kegH.amountSold }} € |
{{ kegH.keg.amount }} € |
+ {{ kegH.keg.pinte.deg }}° |
Voir |
{% if perms.gestion.close_keg %} Fermer {% endif %}{% if perms.gestion.change_keg %} Modifier{% endif %} |
@@ -78,6 +80,7 @@
Code barre |
Capacité |
Prix du fût |
+ Degré |
Historique |
Administrer |
@@ -90,6 +93,7 @@
{{ keg.barcode }} |
{{ keg.capacity }} L |
{{ keg.amount }} € |
+ {{ keg.pinte.deg }}° |
Voir |
{% if perms.gestion.open_keg %}{% if keg.stockHold > 0 %} Percuter {% endif %}{% endif %}{% if perms.gestion.change_keg %} Modifier{% endif %} |
diff --git a/templates/home.html b/templates/home.html
index b05a045..4e8a3ff 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -23,7 +23,7 @@
Les bières pressions actuellement en Coopé :
{% for keg in kegs %}
- - {{keg}} ({% if keg.pinte %} Pinte : {{keg.pinte.amount}}€,{% endif %}{% if keg.demi %} Demi : {{keg.demi.amount}}€,{% endif %}{% if keg.galopin %} Galopin : {{keg.galopin.amount}}€{% endif %})
+ - {{keg}} ({% if keg.pinte %} Pinte : {{keg.pinte.amount}}€,{% endif %}{% if keg.demi %} Demi : {{keg.demi.amount}}€,{% endif %}{% if keg.galopin %} Galopin : {{keg.galopin.amount}}€{% endif %}) : {{keg.pinte.deg}}°
{% endfor %}