コード例 #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
ファイル: autoranker.py プロジェクト: jperla/autoranker
def partial_list(p, things):
    with p(html.ol()):
        for t in things:
            p(html.li(t))