[Answered ]-Session parse from django templae

2👍

You can access to array elements with . in templates :

{{request.session.0}}

from wiki :

Dot lookups can be summarized like this: when the template system encounters a dot in a variable name, it tries the following lookups, in this order:

Dictionary lookup (e.g., foo["bar"])
Attribute lookup (e.g., foo.bar)
Method call (e.g., foo.bar())
List-index lookup (e.g., foo[2])
👤Mazdak

Leave a comment