Django Template not loading
问题 I have a project named 'src' and app named 'app' and i have a template folder inside my app. And inside my template folder i have another folder named pages and my html pages(base.html and view.html) are resides there. My view.py is below from django.shortcuts import render from django.utils import timezone # Create your views here. def home(request): return render(request, "pages/base.html", {}) and urls.py from django.conf import settings from django.conf.urls import include, url from