0
我創建了以下Django的書例子作爲下一個模板:TemplateDoesNotExist但它的存在
<html>
<head>
<title>Search</title>
</head>
<body>
<form action="/search/" method="get">
<input type="text" name="q">
<input type="submit" value="Search">
</form>
</body>
</html>
我的看法是:
def search_form(request):
return render_to_response(request, 'search_form.html')
和我的設置:
import os
RUTA_PROYECTO = os.path.dirname(os.path.realpath(__file__))
TEMPLATE_DIRS = (os.path.join(RUTA_PROYECTO ,'templates'),)
它應該工作,但是當我運行服務器時,我得到TemplateDoesNotExist
嘗試設置TEMPLATE_DIRS =(os.path.join(RUTA_PROYECTO,'templates'),)'。注意逗號。 – alecxe
是的thx這是一個錯誤,但我解決了它,TemplateDoesNotExist繼續 –
顯示項目結構。 – Carlangueitor