【发布时间】:2010-12-27 14:13:27
【问题描述】:
这是我的文件:
mysite
templates
homepage.html
accounts
a.html
login_view.html
我可以在 127.0.0.1:8000 上获得 homepage.html 和 accounts\a.html
但在http://zjm1126.alwaysdata.net 中,我只能得到homepage.html,无法得到
accounts\a.html,
这是我的代码:
return render_to_response('accounts/login_view.html')
accounts/login_view.html 是:
{% include "accounts\a.html" %}
我该怎么办,谢谢,
【问题讨论】:
标签: python django templates hosting