blob: 35aa72a6d8a996a8e08bbf6f4fb63c31c14d505d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
## 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></p>
|