From 5e4a26757640aa4493a2e91bf9c0eab26bf29193 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 3 Sep 2013 07:41:57 +0200 Subject: Minor change to the template of the /history page. --- source/static/templates/history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/static/templates/history.html b/source/static/templates/history.html index a0b42fd2..16f909dc 100644 --- a/source/static/templates/history.html +++ b/source/static/templates/history.html @@ -17,7 +17,7 @@ from collections import Counter if "year" in query: the_year = query.split('-')[0].split(':')[1] if "month" not in query: - html += "

Choose a month for " + the_year + "

\n" + html += "

Choose a month for the year " + the_year + "

\n" if "month" in query: the_month = query.split('-')[1].split(':')[1] html += "

Articles of "+ calendar.month_name[int(the_month)] + ", "+ the_year +".

\n" -- cgit