但是页面比较大略。
现在我们要给它添加模板,让他显示的好一些。
利用render函数来加载模板。
def index(request): contacts = Contact.objects.all() context = {'contacts': contacts} return render( request, 'myfirstapp/index.html', context)
然后我们编写template
编辑文件myfirstapp/templates/myfirstapp/index.html
然后访问页面就能用表格形式输出页面了。