aboutsummaryrefslogtreecommitdiff
path: root/source/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 11:26:46 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 11:26:46 +0100
commitcce15546b4c4c3cfdf842ce167f8d67811b13b48 (patch)
tree1d32fba75054c230f832743531f118c02355a282 /source/templates
parentRemoved a duplicate line in the template of the management page. (diff)
downloadnewspipe-cce15546b4c4c3cfdf842ce167f8d67811b13b48.tar.gz
newspipe-cce15546b4c4c3cfdf842ce167f8d67811b13b48.tar.bz2
newspipe-cce15546b4c4c3cfdf842ce167f8d67811b13b48.zip
The notification page indicates if e-mail notification is disabled.
Diffstat (limited to 'source/templates')
-rw-r--r--source/templates/notifications.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/templates/notifications.html b/source/templates/notifications.html
index 35aa72a6..88558b05 100644
--- a/source/templates/notifications.html
+++ b/source/templates/notifications.html
@@ -11,4 +11,8 @@
%else:
<p>No active notifications.<p>
%endif
- <p>Notifications are sent to: <a href="mail:${mail_to}">${mail_to}</a></p>
+ <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