aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-10 07:38:49 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-10 07:38:49 +0200
commitf63ccd7cc96b447620345c8267e7909e26506443 (patch)
tree88817858a725c96b64d2a9791da88b0a60c4de9b /source
parentChanged revesion date. (diff)
downloadnewspipe-f63ccd7cc96b447620345c8267e7909e26506443.tar.gz
newspipe-f63ccd7cc96b447620345c8267e7909e26506443.tar.bz2
newspipe-f63ccd7cc96b447620345c8267e7909e26506443.zip
It is now possible to delete all articles from a feed from the database via the /feed page.
Diffstat (limited to 'source')
-rw-r--r--source/static/templates/feed.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/static/templates/feed.html b/source/static/templates/feed.html
index d71672b1..2b394c46 100644
--- a/source/static/templates/feed.html
+++ b/source/static/templates/feed.html
@@ -130,6 +130,10 @@ import utils
<input type="hidden" name="feed_id" value="${feed['feed_id']}" />
</form>
+ <form method=get action="/remove_feed/${feed['feed_id']}">
+ <p><input type="submit" value="Unsubscribe" />
+ (deletes corresponding articles)</p>
+ </form>
%if articles != []:
</br />
bgstack15