{% if current_user.is_authenticated %} {% if current_user.is_admin %} {# Dashboard link removed: users can click the logo to go to the dashboard. #} {% else %} {# Dashboard link removed: users can click the logo to go to the dashboard. #} {% endif %} {% endif %}
{% if current_user.is_authenticated %}
{{ current_user.email }}
Change password
{% if not current_user.is_admin %}
My company
{% endif %} {% if session.get('impersonator_admin_id') %}
Stop impersonation
{% endif %}
Logout
{% else %}
Login
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}
{% block page_scripts %}{% endblock %}