aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-02 11:36:48 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-02 11:36:48 +0100
commitfb0d6ac082bd1e0e5ca367df64e882319d79445b (patch)
tree92ce3e930a6a168f0996869fcac4fa6aa97855a9 /source
parentRemoved useless locale import. (diff)
downloadnewspipe-fb0d6ac082bd1e0e5ca367df64e882319d79445b.tar.gz
newspipe-fb0d6ac082bd1e0e5ca367df64e882319d79445b.tar.bz2
newspipe-fb0d6ac082bd1e0e5ca367df64e882319d79445b.zip
Numbers are printed with commas as thousands separators (/feed page).
Diffstat (limited to 'source')
-rw-r--r--source/templates/feed.html2
1 files changed, 1 insertions, 1 deletions
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
%>
<div class="left inner">
- <p>The feed <b>${feed['feed_title']}</b> contains <b>${nb_articles_feed}</b> articles.
+ <p>The feed <b>${feed['feed_title']}</b> contains <b>${format(nb_articles_feed, ',d')}</b> articles.
Representing ${round((nb_articles_feed / nb_articles_total) * 100, 4)} percent of the total (${format(nb_articles_total, ',d')}).</p>
%if articles:
bgstack15