Example #1
0
def render_bi_groups():
    html.open_ul()
    for group in bi.aggregation_groups():
        bulletlink(
            group, "view.py?view_name=aggr_group&aggr_group=%s" %
            html.urlencode(group))
    html.close_ul()
Example #2
0
def render_bi_groups():
    html.write("<ul>")
    for group in bi.aggregation_groups():
        bulletlink(
            group, "view.py?view_name=aggr_group&aggr_group=%s" %
            htmllib.urlencode(group))
    html.write("</ul>")
Example #3
0
File: bi.py Project: dago/check_mk
def render_bi_groups():
    html.write("<ul>")
    for group in bi.aggregation_groups():
        bulletlink(group, "view.py?view_name=aggr_group&aggr_group=%s" %
              htmllib.urlencode(group))
    html.write("</ul>")
Example #4
0
 def display(self):
     htmlvar = self.htmlvars[0]
     html.select(htmlvar, [ ("", "") ] + [(g, g) for g in bi.aggregation_groups()])
Example #5
0
 def display(self):
     htmlvar = self.htmlvars[0]
     html.select(htmlvar, [ ("", "") ] + [(g, g) for g in bi.aggregation_groups()])