From fb0d6ac082bd1e0e5ca367df64e882319d79445b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 2 Jan 2013 11:36:48 +0100 Subject: Numbers are printed with commas as thousands separators (/feed page). --- source/templates/feed.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/templates/feed.html b/source/templates/feed.html index 8e10393c..cc3f6fb7 100644 --- a/source/templates/feed.html +++ b/source/templates/feed.html @@ -4,7 +4,7 @@ import utils %>
-

The feed ${feed['feed_title']} contains ${nb_articles_feed} articles. +

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

%if articles: -- cgit