--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/ebb1381a-02a7-46b9-b9c1-0d064596bed7%40googlegroups.com.
{% load index %}
{{ lista|index:forloop.counter0 }} // this will print the element in the lista array corresponding to the current forloop counterfrom django import template
register = template.Library()
@register.filter
def index(indexable, i):
return indexable[i]