aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-11-17 14:07:46 +0100
committercedricbonhomme <devnull@localhost>2010-11-17 14:07:46 +0100
commit3ebf28ee3551c8874c27d011cb49f7d44d6c2911 (patch)
treea7a9294e7a3f5282e10ce5ea46db3db81b9527f8 /pyAggr3g470r.py
parentAdded new icons. Deleted text menu. (diff)
downloadnewspipe-3ebf28ee3551c8874c27d011cb49f7d44d6c2911.tar.gz
newspipe-3ebf28ee3551c8874c27d011cb49f7d44d6c2911.tar.bz2
newspipe-3ebf28ee3551c8874c27d011cb49f7d44d6c2911.zip
Reorganization of the menu.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 4e65cc16..31c1c875 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -129,22 +129,22 @@ class Root:
html += """<div class="left inner">\n"""
if self.articles:
+ html += '<a href="/management/"><img src="/css/img/management.png" title="Management" /></a>\n'
+ html += '<a href="/history/"><img src="/css/img/history.png" title="History" /></a>\n'
+ html += '&nbsp;&nbsp;&#124;&nbsp;&nbsp;'
+
html += """<a href="/list_favorites/"><img src="/css/img/heart-22x22.png" title="Your favorites (%s)" /></a>\n""" % \
(self.nb_favorites,)
- html += """<a href="/list_notification"><img src="/css/img/email-follow.png" title="Active e-mail notifications (%s)" /></a>\n""" % \
+ html += """<a href="/list_notification/"><img src="/css/img/email-follow.png" title="Active e-mail notifications (%s)" /></a>\n""" % \
(self.nb_mail_notifications,)
-
- html += '<a href="/management/"><img src="/css/img/management.png" title="Management" /></a>\n'
- html += '<a href="/history/"><img src="/css/img/history.png" title="History" /></a>\n'
- html += '&nbsp;&#124;&nbsp;'
+ html += '&nbsp;&nbsp;&#124;&nbsp;&nbsp;'
html += '<a href="/mark_as_read/All"><img src="/css/img/mark-as-read.png" title="Mark articles as read" /></a>\n'
- html += '<a href="/fetch/"><img src="/css/img/check-news.png" title="Check for news" /></a>\n'
if self.nb_unread_articles != 0:
html += """<a href="/unread/All"><img src="/css/img/email-unread.png" title="Unread article(s): %s" /></a>\n""" % \
(self.nb_unread_articles,)
-
+ html += '<a href="/fetch/"><img src="/css/img/check-news.png" title="Check for news" /></a>\n'
# The main page display all the feeds.
for rss_feed_id in self.feeds.keys():
bgstack15