aboutsummaryrefslogtreecommitdiff
path: root/source/templates/inactives.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:20:00 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:20:00 +0100
commit9a6fe2bf696c4c364518159735f4f5d12c666681 (patch)
treec540d7d1cf76542627673ef36490c641bb02f50f /source/templates/inactives.html
parentUpdated revision date (diff)
downloadnewspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.tar.gz
newspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.tar.bz2
newspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.zip
Reaorganization of folders for the CSS, templates and pictures.
Diffstat (limited to 'source/templates/inactives.html')
-rw-r--r--source/templates/inactives.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/templates/inactives.html b/source/templates/inactives.html
deleted file mode 100644
index 57482b61..00000000
--- a/source/templates/inactives.html
+++ /dev/null
@@ -1,15 +0,0 @@
-## inactives.html
-<%inherit file="base.html"/>
-<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="1000000" step="1" size="4" style="text-align: center" /> days:</h1>
- </form>
- <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
bgstack15