diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-03 13:39:28 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-03 13:39:28 +0100 |
commit | 8d6b6514b93beb30d032b8e7b568e9b3c3e1ca3b (patch) | |
tree | 795c37cfc4f13b246f5951ef3e80946717ad8e91 /source/templates | |
parent | Number of days with datetime.timedelta can't be bigger than 999999999. (diff) | |
download | newspipe-8d6b6514b93beb30d032b8e7b568e9b3c3e1ca3b.tar.gz newspipe-8d6b6514b93beb30d032b8e7b568e9b3c3e1ca3b.tar.bz2 newspipe-8d6b6514b93beb30d032b8e7b568e9b3c3e1ca3b.zip |
Minor changes to the management page.
Diffstat (limited to 'source/templates')
-rw-r--r-- | source/templates/management.html | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/source/templates/management.html b/source/templates/management.html index 8d8a1bbd..5bc38439 100644 --- a/source/templates/management.html +++ b/source/templates/management.html @@ -18,15 +18,21 @@ <input type="submit" value="OK"> </form> - <p>Active e-mail notifications: <a href="/notifications/">${nb_mail_notifications}</a></p> + <hr /> - <p>You like <a href="/favorites/">${nb_favorites}</a> article(s).</p> + <h1>Facts</h1> + <ul> + <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> + </ul> %endif <hr /> - <p>${nb_articles} article(s) are stored in the database with <a href="/unread/">${nb_unread_articles} unread article(s)</a>.<br /> - <a href="/statistics/">Advanced statistics.</a></p> + <h1>Database</h1> + <p>${nb_articles} article(s) are stored in the database with <a href="/unread/">${nb_unread_articles} unread article(s)</a>. <form method=get action="/fetch/"> <input type="submit" value="Fetch all feeds"> @@ -35,6 +41,8 @@ <input type="submit" value="Delete all articles"> </form> + <hr /> + <h1>Export articles</h1> <form method=get action="/export/"> <select name="export_method"> @@ -44,4 +52,4 @@ <option value="export_txt">Text</option> </select> <input type="submit" value="Export"> - </form>
\ No newline at end of file + </form> |