python – 这个模板中的正确包含路径是什么?
作者:互联网
我正在编辑文件:
/templates/account/base.html
并希望包括:
/templates/profiles/includes/sub_nav.html
我尝试过以下方法:
{% block subnav %}{% include "profiles/includes/sub_nav.html"%}{% endblock %}
结果:没有错误但没有包含侧栏
而我也试过了
{% block subnav %}{% include "../profiles/includes/sub_nav.html"%}{% endblock %}
结果:
模板错误页面:异常值:渲染时捕获TemplateDoesNotExist:../ profile /includes / sub_nav.html
突出显示以下行:
{%extends“account / base.html”%}
因此,对于下面的内容,XXX应该包含在/templates/account/base.html中?
{% block subnav %}{% include "XXX/sub_nav.html"%}{% endblock %}
解决方法:
“结果:没有错误,但没有包含侧栏”.
逻辑结论
你的sub_nav.html有问题.或者你的base.html有问题包含正在运行.它必须是HTML,CSS或Django标签.
标签:python,django,django-templates,include-path 来源: https://codeday.me/bug/20190710/1419077.html