6 lines
195 B
Python
6 lines
195 B
Python
from django.shortcuts import render
|
|
from .models import Product
|
|
|
|
def product_list(request):
|
|
items = Product.objects.all()
|
|
return render(request, 'products/list.html', {'products': items}) |