From 3a3c633e4faa1a8b58f67cd97656d1cff116f51c Mon Sep 17 00:00:00 2001 From: Sanj Date: Tue, 14 Feb 2012 12:41:48 +0530 Subject: [PATCH] minor --- itf/templates/emailer/email.html | 4 ++-- itf/templates/modules/emailer/emailerissue.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/itf/templates/emailer/email.html b/itf/templates/emailer/email.html index 59ae2e0..dcfb071 100755 --- a/itf/templates/emailer/email.html +++ b/itf/templates/emailer/email.html @@ -42,7 +42,7 @@

Web Links

{% for weblink in weblinks %} -

• {{ weblink.box_title }}

+

• {{ weblink.box_title|truncatewords:12 }}

{% endfor %}

More »

@@ -51,7 +51,7 @@

Bulletin Board

{% for bbitem in bbitems %} -

• {{ bbitem.box_title }}

+

• {{ bbitem.box_title|truncatewords:12 }}

{% endfor %}

More »

diff --git a/itf/templates/modules/emailer/emailerissue.html b/itf/templates/modules/emailer/emailerissue.html index f7aa298..273cabf 100755 --- a/itf/templates/modules/emailer/emailerissue.html +++ b/itf/templates/modules/emailer/emailerissue.html @@ -36,7 +36,7 @@

WEB LINKS

{% for weblink in weblinks %} -

• {{ weblink.box_title }}

+

• {{ weblink.box_title|truncatewords:12 }}

{% endfor %}

More »

@@ -44,7 +44,7 @@

BULLETIN BOARD

{% for bbitem in bbitems %} -

• {{ bbitem.box_title }}

+

• {{ bbitem.box_title|truncatewords:12 }}

{% endfor %}

More »