aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
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