我的应用程序的第一页:home.html 我写了一个视图来将请求呈现给“localhost:8080 / contact”
def contact(request):
..
return render(request,'template/contact.html',{'contact': [ htmlString ] })
现在,localhost:8080 / contact正常工作并显示输出。但我需要在home.html中包含相同的输出
我试图在home.html中添加<a href ="template/contact.html></a>
,但它现在显示结果。
有人可以解释如何做到这一点..
我是python django开发的初学者。