从型号导入类别,产品

时间:2018-01-18 12:17:23

标签: python django

“来自型号导入类别,产品”的问题......

def ProductList(request, category_slug=None):
    category = None
    categories = Category.objects.all()
    products = Product.objects.filter(available=True)
    if category_slug:
        category = get_object_or_404(Category, slug=category_slug)
        products = products.filter(category=category)
    return render(request, 'shop/product/list.html', {
        'category': category,
        'categories': categories,
        'products': products
    })

1 个答案:

答案 0 :(得分:0)

你忘了使用积分了。 您需要使用.models import Category,Product。