我正在尝试在 django 模板中执行此操作:
{% for book in books %}
if book in this library
print "already in this library"
else
print "add to this library"
{% endfor %}
有两个库L
和O
.
但同一本书可以在多个图书馆,我在图书馆L
。这本书b
在两个图书馆。这就是为什么我的循环同时给出两个输出。
already in this library
add to this library
这是胡说八道。我该如何修复这个逻辑?