コード例 #1
0
ファイル: Post_Views.py プロジェクト: wax54/flask-blogy
def delete_post(post_id):
    """Deletes the specified post from the DB"""
    post = Post.delete_by_id(post_id)
    return redirect('/')