Exemple #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()
Exemple #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>")
Exemple #3
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>")
Exemple #4
0
 def display(self):
     htmlvar = self.htmlvars[0]
     html.select(htmlvar, [ ("", "") ] + [(g, g) for g in bi.aggregation_groups()])
Exemple #5
0
 def display(self):
     htmlvar = self.htmlvars[0]
     html.select(htmlvar, [ ("", "") ] + [(g, g) for g in bi.aggregation_groups()])