1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from django.template import Library
register = Library()
@register.filter
def get_range( value ):
"""
Filter - returns a list containing range made from given value
Usage (in template):
<ul>{% for i in 3|get_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 )
|
More like this
- isoutc template filter by japerk 4 years, 1 month ago
- Template filter to turn Twitter names into links by mrben_ 2 years, 10 months ago
- Template filter to convert timecodes into links by justin_h 3 years, 8 months ago
- Template tag to clear cached template fragment by joao.coelho 3 years, 6 months ago
- Past days template filter by ramen 3 years, 6 months ago
Comments
This should be a default filter
#
@pro547 I second that!
Thanks for the snippet! :)
#
simple and great!
#
This may also be useful: http://www.djangosnippets.org/snippets/1926/ It lets you use the full power of range (ie, specifying a start, stop and step).
#
Err, that link should be: http://www.djangosnippets.org/snippets/1926/
#
for one based, you can add 1 via a list comprehension
#
Would it make more sense to call this as_range instead of get_range?
#