diff options
-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> |