コード例 #1
0
def comment_block(target):
    return {
        'target': target,
        'comment_form': CommentForm,
        'comment_list': Comment.get_by_target(target),
    }
コード例 #2
0
ファイル: comment_block.py プロジェクト: GalphaXie/typeidea
def comment_block(target):
    return {
        "target": target,
        "comment_form": CommentForm(),
        "comment_list": Comment.get_by_target(target),
    }