I am trying to make a table with values I get from a list but I keep getting the error \"Could not parse the remainder: \'[0]\' from \'item[0]\'\" whenever I try to access an it
You would write the following to get item 0:
0
{{ item.0 }}
Similarly, to get the first item of the first item you'd write:
{{ item.0.0 }}