可以将每个html公共的部分做成一个基本模板,其他模板继承这个基本模板,则会拥有基本模板的所有内容. views.py from django.shortcuts import render def index(request): context = {'username': 'zhiliao'} return render(request,'index.html',context=context) def company(request): return render(request,'com…