示例#1
0
文件: web_raven.py 项目: jperla/raven
def template_list_puzzle(p, ids):
    with p(html.ol()):
        for id in ids:
            p(html.li(html.a(ask_matrix.url(id), id)))
示例#2
0
def partial_list(p, things):
    with p(html.ol()):
        for t in things:
            p(html.li(t))