Django模板中的循环数字

时间:2009-07-10 04:48:04

标签: django django-templates

如何在Django模板中编写数字for循环?我的意思是

for i = 1 to n

21 个答案:

答案 0 :(得分:354)

我使用了一种简单的技术,适用于没有特殊标签且没有其他上下文的小案例。有时这会派上用场

{% for i in i|rjust:20 %}
    {{ forloop.counter }}
{% endfor %}

答案 1 :(得分:93)

不幸的是,这是Django模板语言中的not supported。有couple suggestions,但它们看起来有点复杂。我只想在上下文中添加一个变量:

...
render_to_response('foo.html', {..., 'range': range(10), ...}, ...)
...

并在模板中:

{% for i in range %}
     ...
{% endfor %}

答案 2 :(得分:90)

{% with ''|center:n as range %}
{% for _ in range %}
    {{ forloop.counter }}
{% endfor %}
{% endwith %}

答案 3 :(得分:66)

我对这个问题的看法,我认为是最好的。我在templatetags目录中保留了my_filters.py。

@register.filter(name='times') 
def times(number):
    return range(number)

你会这样使用:

{% load my_filters %}
{% for i in 15|times %}
    <li>Item</li>
{% endfor %}

答案 4 :(得分:35)

也许是这样的?

{% for i in "x"|rjust:"100" %}
...
{% endfor %}

答案 5 :(得分:30)

您可以传递

的绑定
{'n' : range(n) }

到模板,然后执行

{% for i in n %}
...
{% endfor %}

请注意,您将获得基于0的行为(0,1,... n-1)。

(针对Python3兼容性进行了更新)

答案 6 :(得分:9)

只是想让其他人遇到这个问题...我已创建了一个模板标记,可让您创建range(...)http://www.djangosnippets.org/snippets/1926/

Accepts the same arguments as the 'range' builtin and creates a list containing
the result of 'range'.

Syntax:
    {% mkrange [start,] stop[, step] as context_name %}

For example:
    {% mkrange 5 10 2 as some_range %}
    {% for i in some_range %}
      {{ i }}: Something I want to repeat\n
    {% endfor %}

Produces:
    5: Something I want to repeat 
    7: Something I want to repeat 
    9: Something I want to repeat

答案 7 :(得分:9)

你没有传递n本身,而是range(n) [从0到n-1的整数列表],从你的视图到你的模板,在后者你做{ {1}}(如果你绝对坚持基于1而不是普通的基于0的索引,你可以在循环体中使用{% for i in therange %}; - )。

答案 8 :(得分:6)

此方法支持标准range([start,] stop[, step])函数

的所有功能

<app>/templatetags/range.py

from django import template

register = template.Library()


@register.filter(name='range')
def _range(_min, args=None):
    _max, _step = None, None
    if args:
        if not isinstance(args, int):
            _max, _step = map(int, args.split(','))
        else:
            _max = args
    args = filter(None, (_min, _max, _step))
    return range(*args)

用法:

{% load range %}

<p>stop 5
{% for value in 5|range %}
{{ value }}
{% endfor %}
</p>

<p>start 5 stop 10
{% for value in 5|range:10 %}
{{ value }}
{% endfor %}
</p>

<p>start 5 stop 10 step 2
{% for value in 5|range:"10,2" %}
{{ value }}
{% endfor %}
</p>

输出

<p>stop 5
0 1 2 3 4
</p>

<p>start 5 stop 10
5 6 7 8 9
</p>

<p>start 5 stop 10 step 2
5 7 9
</p>

答案 9 :(得分:6)

我在这个问题上非常努力,我在这里找到了最好的答案: (来自how to loop 7 times in the django templates

您甚至可以访问idx!

views.py:

context['loop_times'] = range(1, 8)

HTML:

{% for i in loop_times %}
        <option value={{ i }}>{{ i }}</option>
{% endfor %}

答案 10 :(得分:6)

您应该在模板中使用“slice”,例如:

在views.py中

contexts = {
    'ALL_STORES': Store.objects.all(),
}

return render_to_response('store_list.html', contexts, RequestContext(request, processors=[custom_processor]))

在store_list.html中:

<ul>
{% for store in ALL_STORES|slice:":10" %}
    <li class="store_item">{{ store.name }}</li>
{% endfor %}
</ul>

答案 11 :(得分:4)

我只是将流行的答案进一步提升并使其更加强大。这允许您指定任何起始点,例如0或1。它还使用了python的范围功能,其中结尾少了一个,因此它可以直接用于列表长度。

@register.filter(name='range')
def filter_range(start, end):
  return range(start, end)

然后在您的模板中只包含上面的模板标记文件并使用以下内容:

{% for c in 1|range:6 %}
{{ c }}
{% endfor %}

现在你可以做1-6而不只是0-6或硬编码。添加一个步骤需要一个模板标签,这应该涵盖更多用例,以便向前迈出一步。

答案 12 :(得分:4)

您可以使用: {% with ''|center: i as range %}

答案 13 :(得分:3)

这基本上需要range功能。为此提出了一个Django功能票(https://code.djangoproject.com/ticket/13088),但关闭了“将无法修复”以及以下注释。

  

我对这个想法的印象是它试图在模板中进行编程。如果您有需要呈现的选项列表,则应在视图中计算它们,而不是在模板中计算。如果那就像一系列值一样简单,那就这样吧。

他们有一个好点 - 模板应该是视图的非常简单的表示。您应该在视图中创建有限的必需数据,并在上下文中传递给模板。

答案 14 :(得分:2)

对于那些寻求简单答案的人,只需要显示一定数量的值,例如说100个帖子中的3个,只需添加{% for post in posts|slice:"3" %}并正常循环即可,仅添加3个帖子。

答案 15 :(得分:2)

这显示1到20个数字:

{% for i in "x"|rjust:"20"|make_list %}
 {{ forloop.counter }}
{% endfor %}

这也可以帮助您: (count_all_slider_objects来自视图)

{% for i in "x"|rjust:count_all_slider_objects %}
  {{ forloop.counter }}
{% endfor %}

  {% with counter=count_all_slider_objects %}
    {% if list_all_slider_objects %}
      {%  for slide in list_all_slider_objects %}
        {{forloop.counter|add:"-1"}}
        {% endfor%}
      {% endif %}
    {% endwith %}

答案 16 :(得分:1)

您可以通过:

{'n':range(n)}

要使用模板:

{%for i in n%} ... {%endfor%}

答案 17 :(得分:0)

{% for _ in ''|center:13 %}
    {{ forloop.counter }}
{% endfor %}

答案 18 :(得分:0)

您可以在 views.py 的上下文中传递 range(n) 而不是 n。这会给你一个可迭代的列表。

context['range']= range(n)

然后你可以用这种方式在你的模板中迭代:

{% for i in range %}
   <!-- your code -->
{% endfor %}

答案 19 :(得分:-1)

如果数字来自模型,我发现这是该模型的一个很好的补丁:

def iterableQuantity(self):
    return range(self.quantity)

答案 20 :(得分:-2)

@page "/Customer/{customerid}/Order/{orderid}"