aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-10 07:40:37 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-10 07:40:37 +0200
commitff1a75e32a1cddfbc8341a47c87cd500f7e2197d (patch)
tree3880e02d5a13e6af1b1bbdff4ce8e7bdaf924276 /source
parentIt is now possible to delete all articles from a feed from the database via t... (diff)
downloadnewspipe-ff1a75e32a1cddfbc8341a47c87cd500f7e2197d.tar.gz
newspipe-ff1a75e32a1cddfbc8341a47c87cd500f7e2197d.tar.bz2
newspipe-ff1a75e32a1cddfbc8341a47c87cd500f7e2197d.zip
Improved /management template.
Diffstat (limited to 'source')
-rw-r--r--source/static/templates/management.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/static/templates/management.html b/source/static/templates/management.html
index bbb98e27..f6c68ace 100644
--- a/source/static/templates/management.html
+++ b/source/static/templates/management.html
@@ -4,19 +4,19 @@
<h1>Subscriptions</h1>
<p>Add a new subscription (current <a href="/subscriptions/">subscriptions</a>):</p>
<form method=get action="/add_feed/">
- <input type="url" name="url" placeholder="URL of a site or feed." maxlength=2048 autocomplete="off">
- <input type="submit" value="OK">
+ <input type="url" name="url" placeholder="URL of a site or feed." maxlength=2048 autocomplete="off" />
+ <input type="submit" value="OK" />
</form>
%if feeds:
- <p>Unsubscribe from a source (deletes corresponding articles from the database):</p>
+ <p>Unsubscribe from a source (deletes corresponding articles):</p>
<form method=get action="/remove_feed/">
<select name="feed_id">
%for feed in feeds:
<option value="${feed['feed_id']}">${feed['feed_title']}</option>
%endfor
</select>
- <input type="submit" value="OK">
+ <input type="submit" value="OK" />
</form>
%endif
@@ -79,6 +79,6 @@
<option value="export_pdf">PDF</option>
<option value="export_txt">Text</option>
</select>
- <input type="submit" value="Export">
+ <input type="submit" value="Export" />
</form>
</p>
bgstack15