diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-03 07:41:57 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-03 07:41:57 +0200 |
commit | 5e4a26757640aa4493a2e91bf9c0eab26bf29193 (patch) | |
tree | a82b1414e790ecb0232433653c4c61958918165f /source/static | |
parent | Removed 'overflow-x:hiden' in the CSS. (diff) | |
download | newspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.tar.gz newspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.tar.bz2 newspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.zip |
Minor change to the template of the /history page.
Diffstat (limited to 'source/static')
-rw-r--r-- | source/static/templates/history.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 += "<h1>Choose a month for " + the_year + "</h1>\n" + html += "<h1>Choose a month for the year " + the_year + "</h1>\n" if "month" in query: the_month = query.split('-')[1].split(':')[1] html += "<h1>Articles of "+ calendar.month_name[int(the_month)] + ", "+ the_year +".</h1>\n" |