- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3天前关闭。
Improve this question
我目前正在跟随Django教程从"Mozilla"的链接是:www.example.com在这里,与代码的github:https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Forms#what_does_it_look_like Here, the github with the code: https://github.com/mdn/django-locallibrary-tutorial/blob/main/catalog/templates/catalog/bookinstance_list_borrowed_all.html
我被困在这一层了:The code I typedThe rendering I have on the screenwhat should normally appear我已经删除了所请求的内容,但仍然得到同样的结果。善良的灵魂可以帮助我解决这个问题吗?以下是不同的截图,以便更好地了解情况。提前感谢。
下面是我输入的代码:{%扩展"基本_通用. html"%}
{%块内容%}
所有借阅书籍
{% if bookinstance_list %}
<ul>
{% for bookinst in bookinstance_list %}
<li class="{% if bookinst.is_overdue %}text-danger{% endif %}">
<a href="{% url 'book-detail' bookinst.book.pk %}">{{bookinst.book.title}}</a> ({{ bookinst.due_back }}) {% if user.is_staff %}- {{ bookinst.borrower }}{% endif %} {% if perms.catalog.can_mark_returned %}- <a href="{% url 'renew-book-librarian' bookinst.id %}">Renew</a> {% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>There are no books borrowed.</p>
{% endif %}
{%端块%}
1条答案
按热度按时间nwlqm0z11#
我认为Django模板标记不是内嵌的,所以它会引发错误,但是,
如果你想实现没有任何借书,然后打印消息
Borrowed book not found
你可以实现这些事情使用{% empty %}
标签像这样...