session
Table of contents
The session object can be used to retrieve variables set by the set_session tag.
For example, when the following is performed:
{% set_session "first_name", "Plate" %}
Then
{{ session.first_name }}
will output Plate
.