【发布时间】:2023-04-28 20:35:01
【问题描述】:
我想在 pinax 中添加到标准引导主题的新链接。我试图在我的网站中实现:
{% block nav %}
{% if user.is_authenticated %}
{% spaceless %}
- {% trans "Profile" %}
- {% trans "Notices" %}{% if notice_unseen_count %} ({{ notice_unseen_count }}){% endif %}
{% endspaceless %
-
First Link
}
{% endif %}
{% endblock %}
但我得到一个错误:
TemplateSyntaxError at /
无效的块标签:'endif',应为'endspaceless'
因此,如何在导航栏添加新链接?