Module: check_mk
Branch: master
Commit: 172744a4b0072fb5198b6e3c815ad1189cd0d5cc
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=172744a4b0072f…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Mon Nov 21 16:17:15 2011 +0100
Multisite: swapped order of bottom page status icons
---
web/htdocs/htmllib.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/htdocs/htmllib.py b/web/htdocs/htmllib.py
index b3f7f5a..111f391 100644
--- a/web/htdocs/htmllib.py
+++ b/web/htdocs/htmllib.py
@@ -669,13 +669,13 @@ class html:
def render_status_icons(self):
h = ""
- for img, tooltip in self.status_icons.items():
- h += '<img class=statusicon src="images/status_%s.png"
title="%s">\n' % (img, tooltip)
if True: # self.req.method == "GET":
h += '<a target="_blank" href="%s"><img
class=statusicon src="images/status_frameurl.png" title="URL to this
frame"></a>\n' % \
self.makeuri([])
h += '<a target="_blank" href="%s"><img
class=statusicon src="images/status_pageurl.png" title="URL to this page
including sidebar"></a>\n' % \
("index.py?" + urlencode_vars([("start_url",
self.makeuri([]))]))
+ for img, tooltip in self.status_icons.items():
+ h += '<img class=statusicon src="images/status_%s.png"
title="%s">\n' % (img, tooltip)
return h
def show_error(self, msg):