aboutsummaryrefslogtreecommitdiff
path: root/source/templates/notifications.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 10:03:34 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 10:03:34 +0200
commitdec57654f8b33e14c92c8f5db504e5a5ec461545 (patch)
treeb6783f6db36be5ec7b4c6bd0253f6379181ca35d /source/templates/notifications.html
parentRemoved epub module. (diff)
downloadnewspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.tar.gz
newspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.tar.bz2
newspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.zip
Removed static, templates and var files.
Diffstat (limited to 'source/templates/notifications.html')
-rw-r--r--source/templates/notifications.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/templates/notifications.html b/source/templates/notifications.html
deleted file mode 100644
index 88558b05..00000000
--- a/source/templates/notifications.html
+++ /dev/null
@@ -1,18 +0,0 @@
-## article.html
-<%inherit file="base.html"/>
-<div class="left inner">
- %if feeds != []:
- <h1>You are receiving e-mails for the following feeds:</h1>
- <ul>
- %for feed in feeds:
- <li><a href="/feed/${feed['feed_id']}">${feed['feed_title']}</a> - <a href="/mail_notification/0:${feed['feed_id']}">Stop</a></li>
- %endfor
- </ul>
- %else:
- <p>No active notifications.<p>
- %endif
- <p>Notifications are sent to: <a href="mail:${mail_to}">${mail_to}</a>.
- %if not mail_notification_enabled:
- However e-mail notification is disabled in the configuration file.
- %endif
- </p>
bgstack15