diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-14 10:44:59 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-14 10:44:59 +0200 |
commit | 79dfa104623d51b7e0bdb411eadceda1747d0a20 (patch) | |
tree | 1542f86ee36a5606af0e9df70fea4e9f44b2060f /source/templates/notifications.html | |
parent | The logo of the feed has been added to the feed management page (/feed). (diff) | |
download | newspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.tar.gz newspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.tar.bz2 newspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.zip |
Templates has been removed to the upper folder.
Diffstat (limited to 'source/templates/notifications.html')
-rw-r--r-- | source/templates/notifications.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/templates/notifications.html b/source/templates/notifications.html new file mode 100644 index 00000000..88558b05 --- /dev/null +++ b/source/templates/notifications.html @@ -0,0 +1,18 @@ +## 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> |