这是我目前必须检查作者是否在相关照片模型中有一些照片:
{% if author.photo_set.count > 0 %}
<h2>...</h2>
<div style="clear: both;"></div>
<div class="author_pic">
{% for photo in author.photo_set.all %}
<img src="..." />
{% endfor %}
<div style="clear: both;"></div>
</div>
<div style="clear: both;"></div>
{% endif %}
这是正确的方法还是我可以以某种方式避免两个查询?
谢谢。