aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/templates/languages.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/templates/languages.html b/source/templates/languages.html
index 202f02c8..229dae17 100644
--- a/source/templates/languages.html
+++ b/source/templates/languages.html
@@ -1,6 +1,11 @@
## languages.html
<%inherit file="base.html"/>
<div class="left inner">
+ <ul>
+ %for language in articles_sorted_by_languages.keys():
+ <li>${language}: ${sum(map(len, articles_sorted_by_languages[language].values()))} articles</li>
+ %endfor
+ </ul>
%for language in articles_sorted_by_languages.keys():
<h1>${language}</h1>
%for feed in articles_sorted_by_languages[language]:
bgstack15