Files
my_shop/products/views.py
ackFromRedmi 6a21f84172
All checks were successful
Auto-Deploy-Shop / deploy (push) Successful in 6s
out env
2026-01-24 22:34:06 +03:00

12 lines
300 B
Python

import os
from django.shortcuts import render
from .models import Product
def product_list(request):
items = Product.objects.all()
env_type = os.getenv("ENV_TYPE", "undefined")
return render(request, 'products/list.html', {
'products': items,
'env_type': env_type
})