From db16119049e84988c313b66078428262b0ed0099 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Fri, 23 Sep 2016 14:44:34 +0200 Subject: [PATCH] Remove truncate on block person --- app/templates/network/inc/person/list_circle_style.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/network/inc/person/list_circle_style.html b/app/templates/network/inc/person/list_circle_style.html index 346b7be3..40275101 100644 --- a/app/templates/network/inc/person/list_circle_style.html +++ b/app/templates/network/inc/person/list_circle_style.html @@ -55,9 +55,9 @@

{{ person.first_name }} {{ person.last_name }}

{% if person.description %} -
{{ person.description|richtext_filters|safe|truncatechars_html:255 }}
+
{{ person.description|richtext_filters|safe }}
{% elif person.bio %} -
{{ person.bio|richtext_filters|safe|truncatechars_html:255 }}
+
{{ person.bio|richtext_filters|safe }}
{% endif %} {% trans "resume" %} -- 2.39.5