{% extends "base.html" %} {% load deployutils_prefixtags %} {% load deployutils_extratags %} {% block content %}

Welcome to the testsite for djaodjin-deployutils!

Sign-in to the site (login: donny, password: yoyo) and see how the HTTP cookie header is decoded into a session.

SessionEngine

{{SESSION_ENGINE}}

As HTTP {% if SESSION_ENGINE == 'deployutils.apps.django.backends.jwt_session_store' %}Authorization{% else %}Cookie{% endif %} Header

{{request.session.session_key_content|wraplines}}

Session Data (From proxy)

{{request.session.session_key_data|wraplines}}
{% if request.session.local_data %}

Session Data (Local)

{{request.session.local_data|wraplines}}
{% endif %}

Clear the browser data to reset the session passed to the site.

{% endblock %}