コード例 #1
0
ファイル: cliente.py プロジェクト: grupo06-PI/grupo06
def ListaClientes():

    cliente=Clientes()
    res = cliente.selectALL()
    return render_template("formListaClientes.html", result=res, content_type='application/json')
コード例 #2
0
ファイル: cliente.py プロジェクト: grupo06-PI/grupo06
def CadCliente():

    cliente=Clientes()
    return render_template("formCliente.html", cliente=cliente, content_type='application/json')