Beispiel #1
0
def shop():
    products = Product.get_products(12)
    return render_template('shop.html', products=products)
Beispiel #2
0
def shop():
	products = Product.get_products(12)
	return render_template('shop.html', products=products)
Beispiel #3
0
def products():
	products = Product.get_products(12)
	return render_template('product/products.html', products=products)
Beispiel #4
0
def products():
    products = Product.get_products(12)
    return render_template('product/products.html', products=products)