Ejemplo n.º 1
0
def accounts_page():
    accounts = Account.get_all_accounts()
    return render_template('pages/account/it/accounts.html', accounts=accounts)
Ejemplo n.º 2
0
def home_page():
    accounts = Account.get_all_accounts()
    return render_template('pages/account/it/dashboard.html',
                           accounts=accounts)