Re: [Django] #13088: Template range filter

3 views
Skip to first unread message

Django

unread,
Mar 16, 2016, 7:30:28 AM3/16/16
to django-...@googlegroups.com
#13088: Template range filter
---------------------------------+--------------------------------------
Reporter: makoste | Owner: nobody
Type: New feature | Status: closed
Component: Template system | Version: 1.2-beta
Severity: Normal | Resolution: wontfix
Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
---------------------------------+--------------------------------------
Changes (by timgraham):

* 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.

Reply all
Reply to author
Forward
0 new messages