articles = Article.objects.all()
我需要显示这篇文章的查询集:
1 - > 2 - > 3
6&lt; - 5 < - 4
7 - &gt; 8 - &gt; 9
其中->
- 是css arrow class
{% for article in articles %}
<div class="box">
<span class="arrow-[left-right or bottom]"></span>
<div class="title">{{ article.title }}</div>
</div>
{% endfor %}