aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-27 15:06:51 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-27 15:06:51 +0100
commit621c18bf6e43b7a0cd5dc19d1195f47f7a20a293 (patch)
tree448c2a0a260e957d82206c4b5a8a52a02a473ad0 /source
parentRemoved the 'Add feed' form from the page /subscriptions. (diff)
downloadnewspipe-621c18bf6e43b7a0cd5dc19d1195f47f7a20a293.tar.gz
newspipe-621c18bf6e43b7a0cd5dc19d1195f47f7a20a293.tar.bz2
newspipe-621c18bf6e43b7a0cd5dc19d1195f47f7a20a293.zip
Minor changes to the format of the /management page.
Diffstat (limited to 'source')
-rw-r--r--source/static/templates/management.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/static/templates/management.html b/source/static/templates/management.html
index a2bce1dc..7f810d06 100644
--- a/source/static/templates/management.html
+++ b/source/static/templates/management.html
@@ -2,17 +2,15 @@
<%inherit file="base.html"/>
<div class="left inner">
<h1>Subscriptions</h1>
+ <p>Add a new subscription:</p>
<form method=get action="/add_feed/">
- <p>
- Add a feed:
- <input type="url" name="url" placeholder="URL of a site" maxlength=2048 autocomplete="off">
+ <input type="url" name="url" placeholder="URL of a site or feed." maxlength=2048 autocomplete="off">
<input type="submit" value="OK">
- </p>
</form>
%if feeds:
+ <p>Unsubscribe from a source (deletes corresponding articles from the database):</p>
<form method=get action="/remove_feed/">
- Delete the feed:
<select name="feed_id">
%for feed in feeds:
<option value="${feed['feed_id']}">${feed['feed_title']}</option>
bgstack15