{% load static %} {% with titlebar_buttons_shape=titlebar.buttons_shape|default:titlebar.home_shape|default:'circle' %}

{{ APP_CONFIG.identity.display_name|default:"DjangoLux" }}{% if user.scope %} - {{ user.scope.name }}{% endif %}

{% block header %}{% endblock %}
{% if user.is_authenticated %}
{% include 'dlux/includes/notifications.html' %}
{% if user.profile.profile_pic %} {{ user.username }} {% else %}
{% endif %} {{ user.username }}
{% for action in titlebar_actions %} {% if action.kind == 'notifications' %}
{% include 'dlux/includes/notifications.html' %}
{% elif action.kind == 'logout' %}
{% csrf_token %}
{% elif action.kind == 'help' %} {% else %} {% endif %} {% endfor %}
{% else %}
{% if request.resolver_match.url_name != 'login' %} {% endif %}
{% for action in titlebar_actions %} {% endfor %}
{% endif %}
{% endwith %}