From 220a4f027d301817d58c448b223ec9a0e9df7061 Mon Sep 17 00:00:00 2001 From: Frederic Date: Thu, 26 Sep 2013 19:49:58 +0200 Subject: [PATCH] fix: translate transaction subject and description --- cash/templates/cash/transaction_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cash/templates/cash/transaction_list.html b/cash/templates/cash/transaction_list.html index 7889dbe..83b64aa 100644 --- a/cash/templates/cash/transaction_list.html +++ b/cash/templates/cash/transaction_list.html @@ -22,7 +22,7 @@ {% for t in transaction_list %} {% if detailed %}{{ t.timestamp|date:'d.m.Y H:i:s' }}{% else %}{{ t.timestamp|date:'d.m.Y'}}{% endif %} - {{ t.subject }}{% if detailed %}
{{ t.description }}{% endif %} + {% trans t.subject %}{% if detailed %}
{% trans t.description %}{% endif %} {{ t.amount|floatformat:2 }} € {% endfor %}