From 147ebbdbbd0c4b9474eaca6840f8fe813f0de411 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Mon, 16 Feb 2015 08:56:13 +0100 Subject: [PATCH] Fixing bug 2195 - Notifications about points, from and to in incorrect order --- .../history/templates/emails/includes/fields_diff-html.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja b/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja index fd859948..4b537805 100644 --- a/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja +++ b/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja @@ -20,13 +20,13 @@ {{ _("from") }}
- {{ points.1 }} + {{ points.0 }} {{ _("to") }}
- {{ points.0 }} + {{ points.1 }} {% endfor %}