コード例 #1
0
ファイル: e-library.py プロジェクト: JustBeard/e-library
def delete_author(author_id):
    if db_handler.delete_author(author_id):
        flash('The author successfully removed')
    return redirect(url_for('index'))
コード例 #2
0
def delete_author(author_id):
    if db_handler.delete_author(author_id):
        flash('The author successfully removed')
    return redirect(url_for('index'))