From fdc8d24c941681f344f999cbb8266e275760db1c Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 2 Jan 2013 11:26:07 +0100 Subject: Numbers are printed with commas as thousands separators without taking into account the locale of the system. --- source/templates/feed.html | 2 +- source/templates/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/templates') diff --git a/source/templates/feed.html b/source/templates/feed.html index 01799fb7..8e10393c 100644 --- a/source/templates/feed.html +++ b/source/templates/feed.html @@ -5,7 +5,7 @@ import utils %>

The feed ${feed['feed_title']} contains ${nb_articles_feed} articles. - Representing ${round((nb_articles_feed / nb_articles_total) * 100, 4)} percent of the total (${nb_articles_total}).

+ Representing ${round((nb_articles_feed / nb_articles_total) * 100, 4)} percent of the total (${format(nb_articles_total, ',d')}).

%if articles:

${(nb_unread_articles_feed == 0 and ["All articles are read"] or [str(nb_unread_articles_feed) + " unread article" + (nb_unread_articles_feed == 1 and [""] or ["s"])[0]])[0]}.

diff --git a/source/templates/index.html b/source/templates/index.html index fea71154..7a09e25c 100644 --- a/source/templates/index.html +++ b/source/templates/index.html @@ -21,7 +21,7 @@ import utils not_read_begin, not_read_end = "", "" html += """
%s (%s%s%s / %s)
\n""" % \ (feed["feed_id"], feed["feed_title"], feed["feed_id"], not_read_begin, \ - mongo.nb_unread_articles(feed["feed_id"]), not_read_end, mongo.nb_articles(feed["feed_id"])) + format(mongo.nb_unread_articles(feed["feed_id"]), ',d'), not_read_end, format(mongo.nb_articles(feed["feed_id"]), ',d')) %> %endfor ${html} -- cgit