{% if category %}
{% with posts=category.blogpost_set.all %}
{% for post in posts %}
{% include 'blog/compenent/_post.html' %}
{% endfor %}
{% elif tag %}
{% with posts=tag.blogpost_set.all %}
{% for post in posts %}
{% include 'blog/compenent/_post.html' %}
{% endfor %}
{% endwith %}
{% endif %}
message:emplateSyntaxError:第20行上的块标记无效:“elif”,应为“endwith”。您是否忘记注册或加载此标签?
1条答案
按热度按时间aelbi1ox1#
您需要以先从
{% with posts=… %}
开始的方式结束,因此: