From a515838d606e28c74a40c5077e7740e94cef8574 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 23 Sep 2010 10:03:14 +0200 Subject: Added a new icon for unread article(s). --- pyAggr3g470r.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 1d530137..e024b3f2 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -49,8 +49,10 @@ path = {'/css/style.css': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'/css/img/heart.png'}, \ '/css/img/heart_open.png': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'/css/img/heart_open.png'}, \ - '/css/img/email.png': {'tools.staticfile.on': True, \ - 'tools.staticfile.filename':utils.path+'/css/img/email.png'}, \ + '/css/img/email-unread.png': {'tools.staticfile.on': True, \ + 'tools.staticfile.filename':utils.path+'/css/img/email-unread.png'}, \ + '/css/img/email-follow.png': {'tools.staticfile.on': True, \ + 'tools.staticfile.filename':utils.path+'/css/img/email-follow.png'}, \ '/css/img/cross.png': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'/css/img/cross.png'}, \ '/var/qrcode': {'tools.staticdir.on': True, @@ -100,10 +102,10 @@ class Root: html += """\n""" % \ (self.nb_favorites,) - html += """\n""" % \ + html += """\n""" % \ (self.nb_mail_notifications,) - html += """Unread article(s): %s\n""" % \ + html += """\n""" % \ (self.nb_unread_articles,) -- cgit