Exemplo n.º 1
0
def brd(id):
    cat = Category()
    brd = Brand()
    arr = Product()
    a = arr.getProductByBrand(id)
    b = brd.getBrands()
    c = cat.getCategories()
    return render_template('home/index.html', arr=a, brr=b, crr=c)