diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-10 07:38:49 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-09-10 07:38:49 +0200 |
commit | f63ccd7cc96b447620345c8267e7909e26506443 (patch) | |
tree | 88817858a725c96b64d2a9791da88b0a60c4de9b /source/static/templates | |
parent | Changed revesion date. (diff) | |
download | newspipe-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/static/templates')
-rw-r--r-- | source/static/templates/feed.html | 4 |
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 /> |