My problem is: I have a list of tuples as a variable to be accessed in a django template file.
I just want to access the third item of the first tuple in the list.
For example: If the list is:
[(1,2,3,4),(5,6,7,8),(9,10,11,12)]
I just want the "3".
I've tried something like:
{{lista | first . 3}}
and
{{(lista | first).3}}
But neither of these work.