aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-03 08:13:25 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-03 08:13:25 +0100
commit861131a07f83c47284c7f02daddbac349e1f8638 (patch)
tree017b9c940c56208fd287c448e647281e1bd70b46 /source
parentAdded a form for the /inactives page in order to enter the number of days. (diff)
downloadnewspipe-861131a07f83c47284c7f02daddbac349e1f8638.tar.gz
newspipe-861131a07f83c47284c7f02daddbac349e1f8638.tar.bz2
newspipe-861131a07f83c47284c7f02daddbac349e1f8638.zip
Number of days with datetime.timedelta can't be bigger than 999999999.
Diffstat (limited to 'source')
-rw-r--r--source/templates/inactives.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/templates/inactives.html b/source/templates/inactives.html
index 190afe19..57482b61 100644
--- a/source/templates/inactives.html
+++ b/source/templates/inactives.html
@@ -3,7 +3,7 @@
<div class="left inner">
%if inactives != []:
<form method=get action="/inactives/">
- <h1>Feeds with no recent articles since <input type="number" name="nb_days" value="${nb_days}" min="0" max="1000000000" step="1" size="4" style="text-align: center" /> days:</h1>
+ <h1>Feeds with no recent articles since <input type="number" name="nb_days" value="${nb_days}" min="0" max="1000000" step="1" size="4" style="text-align: center" /> days:</h1>
</form>
<ul>
%for item in inactives:
@@ -12,4 +12,4 @@
</ul>
%else:
<p>No inactive feeds.<p>
- %endif \ No newline at end of file
+ %endif
bgstack15