0

我想在 pinax 中添加到标准引导主题的新链接。我试图在我的网站中实现:

{% block nav %}
    {% if user.is_authenticated %}
        <ul>{% spaceless %}
            <li id="tab_profile"><a href="{% url profile_detail user.username %}">{% trans "Profile" %}</a></li>
            <li id="tab_notices"><a href="{% url notification_notices %}">{% trans "Notices" %}{% if notice_unseen_count %} ({{ notice_unseen_count }}){% endif %}</a></li>
        {% endspaceless %
            <li id="tab_first">
                <a href="#">First Link</a>
            </li>
        }</ul>
    {% endif %}
{% endblock %}

但我收到一个错误:

/ 处的模板语法错误

无效的块标签:“endif”,预期为“endspaceless”

因此,如何向导航栏添加新链接?

4

1 回答 1

2

你有一个语法错误,你没有endspaceless正确终止:

{% endspaceless %
    <li id="tab_first">
        <a href="#">First Link</a>
    </li>
}</ul>

应该:

{% endspaceless %}
    <li id="tab_first">
        <a href="#">First Link</a>
    </li>
</ul>
于 2012-11-09T06:08:55.303 回答