按以下顺序在模板中显示查询集

时间:2015-01-18 12:33:32

标签: python django django-templates django-filter

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 %}

0 个答案:

没有答案