Opened 14 years ago

Last modified 8 years ago

#13088 closed

Template range filter — at Initial Version

Reported by: makoste Owned by: nobody
Component: Template system Version: 1.2-beta
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

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 )

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top