加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python – 这个模板中的正确包含路径是什么?

发布时间:2020-12-20 13:23:56 所属栏目:Python 来源:网络整理
导读:我正在编辑文件: /templates/account/base.html 并希望包括: /templates/profiles/includes/sub_nav.html 我尝试过以下方法: {% block subnav %}{% include "profiles/includes/sub_nav.html"%}{% endblock %} 结果:没有错误但没有包含侧栏 而我也试过了
我正在编辑文件:

/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标签.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读