From ee8b66b7df73088848887df15ba5d731ccccb554 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 16 Dec 2013 23:25:32 +0100 Subject: [PATCH] fix chars info --- teleforma/templates/teleforma/answer_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/templates/teleforma/answer_detail.html b/teleforma/templates/teleforma/answer_detail.html index 091226db..60773080 100644 --- a/teleforma/templates/teleforma/answer_detail.html +++ b/teleforma/templates/teleforma/answer_detail.html @@ -33,7 +33,7 @@ $('#reject').unbind('click').click(function() {
-

{{ answer.question|safe }} ({{ answer.question.min_nchars }} {% trans "characters"})

+

{{ answer.question|safe }} ({{ answer.question.min_nchar }} {% trans "characters" %})

{{ answer.question.question|safe }} @@ -44,7 +44,7 @@ $('#reject').unbind('click').click(function() {
-

{% trans "Answer" %}{% if answer.question.rank %} n° {{ answer.question.rank }}{% endif %} ({{ answer.answer|length }} {% trans "characters"})

+

{% trans "Answer" %}{% if answer.question.rank %} n° {{ answer.question.rank }}{% endif %} ({{ answer.answer|length }} {% trans "characters" %})

{{ answer.answer|safe }} -- 2.39.5