Exemple #1
0
def comment_id():
    """ Comment id display"""

    try:
        comment_id = int(request.args(0))
    except:
        raise HTTP(400, "Problem with id.")

    plg = PluginComments(boilerplate).install()

    body = plg.render_markup_comment(_.comment_comment(comment_id))

    return body