aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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