skip to Main Content

Django/CSS static files not loading

I am using a template to make a customized website. However some static files are loading and some are not. I get a red underline in my text editor in these locations: <section class="dento-service-area section-padding-100-0 bg-img bg-gradient-overlay jarallax clearfix" style="background-image:…

VIEW QUESTION

i want two pass two context in index.html file

my views.py from django.shortcuts import render, HttpResponse,redirect from .models import * # Create your views here. def index(request): products=Product.objects.all() params={'product':products} categories=Category.objects.all() category={'category':categories} return render(request,'index.html',params,category) i am creating an ecommerce website on django and i want to pass two context in…

VIEW QUESTION
Back To Top
Search