{% block toolbar %}
{% set color_code = (collector.authenticated) ? 'green' : 'red' %}
{% set icon %}
{% if collector.authenticated %}
{{ collector.username }}
{% endif %}
{% endset %}
{% set text %}
{% if collector.authenticated %}
{{ 'Logged in as'|t }}
{{ collector.username }}
{{ 'Roles'|t }}
{{ collector.roles|join(', ') }}
{{ 'Authenticated by'|t }}
{{ collector.provider }}
{% else %}
{{ collector.anonymous }}
{% endif %}
{% endset %}
{% endblock %}
{% block panel %}
{% endblock %}