aboutsummaryrefslogtreecommitdiff
path: root/source/templates/inactives.html
diff options
context:
space:
mode:
Diffstat (limited to 'source/templates/inactives.html')
-rw-r--r--source/templates/inactives.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/templates/inactives.html b/source/templates/inactives.html
new file mode 100644
index 00000000..10a79e8e
--- /dev/null
+++ b/source/templates/inactives.html
@@ -0,0 +1,13 @@
+## inactives.html
+<%inherit file="base.html"/>
+<div class="left inner">
+ %if inactives != []:
+ <h1>Feeds with no recent articles since ${nb_days} days:</h1>
+ <ul>
+ %for item in inactives:
+ <li><a href="/feed/${item[0]["feed_id"]}">${item[0]["feed_title"]}</a> (${item[1].days} days)</li>
+ %endfor
+ </ul>
+ %else:
+ <p>No inactive feeds.<p>
+ %endif \ No newline at end of file
bgstack15