Hi,
If you're using the django template language, use a dot instead of [].
Try this: {{ item.0.image.url }}
For {{ foo.bar }}, the django template language tries the following:
foo[bar] # dict lookup
foo.bar # property
foo[int(bar)] # index lookup
foo.bar() # callable
Reference for django 1.11:
https://github.com/django/django/blob/1.11/django/template/base.py#L869Regards,
Dartos