aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 19:30:35 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 19:30:35 +0100
commite0b637325dd546f57e9c2a633aded9ad43e8e8ae (patch)
tree3d4cd5c9f99cc31d4ba37f85a54f2085d21d542c /source
parentMinor bug fix: after changing the username, the username of the session varia... (diff)
downloadnewspipe-e0b637325dd546f57e9c2a633aded9ad43e8e8ae.tar.gz
newspipe-e0b637325dd546f57e9c2a633aded9ad43e8e8ae.tar.bz2
newspipe-e0b637325dd546f57e9c2a633aded9ad43e8e8ae.zip
Reworked the UI of the /management page.
Diffstat (limited to 'source')
-rw-r--r--source/templates/management.html17
1 files changed, 10 insertions, 7 deletions
diff --git a/source/templates/management.html b/source/templates/management.html
index 553982fb..b32f7b3b 100644
--- a/source/templates/management.html
+++ b/source/templates/management.html
@@ -2,15 +2,17 @@
<%inherit file="base.html"/>
<div class="left inner">
<h1>Subscriptions</h1>
- <h3>Add Feeds</h3>
<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="submit" value="OK">
+ </p>
</form>
%if feeds:
- <h3>Delete Feeds</h3>
<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>
@@ -18,13 +20,10 @@
</select>
<input type="submit" value="OK">
</form>
-
- <hr />
-
-
+ <hr />
<h1>Facts</h1>
<ul>
- <li>active e-mail notifications: <a href="/notifications/">${nb_mail_notifications}</a>;</li>
+ <li>active e-mail notifications: <a href="/notifications/">${nb_mail_notifications}</a>;</li>
<li>you like <a href="/favorites/">${nb_favorites}</a> article(s);</li>
<li><a href="/statistics/">tag clouds</a>;</li>
<li><a href="/inactives/">inactive feeds</a>.</li>
@@ -34,6 +33,7 @@
<hr />
<h1>Account</h1>
+ <p>
<form method=get action="/change_username/">
<input type="text" name="new_username" value="" placeholder="Enter a new username." />
</form>
@@ -41,6 +41,7 @@
<form method=get action="/change_password/">
<input type="password" name="new_password" value="" placeholder="Enter a new password." />
</form>
+ </p>
<hr />
@@ -58,6 +59,7 @@
<hr />
<h1>Export articles</h1>
+ <p>
<form method=get action="/export/">
<select name="export_method">
<option value="export_html" selected='selected'>HTML (simple Webzine)</option>
@@ -67,3 +69,4 @@
</select>
<input type="submit" value="Export">
</form>
+ </p> \ No newline at end of file
bgstack15