* ui_ux: => 0
* type: => New feature
* easy: => 0
* severity: => Normal
Old description:
> def range( value ):
> """
> Filter - returns a list containing range made from given value
> Usage (in template):
>
> <ul>{% for i in 3|range %}
> <li>{{ i }}. Do something</li>
> {% endfor %}</ul>
>
> Results with the HTML:
> <ul>
> <li>0. Do something</li>
> <li>1. Do something</li>
> <li>2. Do something</li>
> </ul>
>
> Instead of 3 one may use the variable set in the views
> """
> return range( value )
New description:
{{{
def range( value ):
"""
Filter - returns a list containing range made from given value
Usage (in template):
<ul>{% for i in 3|range %}
<li>{{ i }}. Do something</li>
{% endfor %}</ul>
Results with the HTML:
<ul>
<li>0. Do something</li>
<li>1. Do something</li>
<li>2. Do something</li>
</ul>
Instead of 3 one may use the variable set in the views
"""
return range( value )
}}}
--
--
Ticket URL: <https://code.djangoproject.com/ticket/13088#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.