blob: 88558b053057e92652c909b20eb09659a6ae0e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
|