示例#1
0
文件: it.py 项目: kmvdj23/HR-System
def accounts_page():
    accounts = Account.get_all_accounts()
    return render_template('pages/account/it/accounts.html', accounts=accounts)
示例#2
0
文件: it.py 项目: kmvdj23/HR-System
def home_page():
    accounts = Account.get_all_accounts()
    return render_template('pages/account/it/dashboard.html',
                           accounts=accounts)