{% load i18n heroicons %} {% if request.user.is_authenticated %} {% if request.path == "/" and request.user.can_access_dashboard %} {% heroicon_micro "user" class="inline align-text-bottom w-4 h-4 me-1" aria_hidden=true %} {% blocktrans %}My {{ ORG_SHORT_NAME }}{% endblocktrans %} {% else %} {% heroicon_micro "user" class="inline align-text-bottom w-4 h-4 me-1" aria_hidden=true %} {{ request.user }} {% endif %} {% else %} {% heroicon_micro "user" class="inline align-text-bottom w-4 h-4 me-1" aria_hidden=true %} {% trans "Log in" %} {% if ENABLE_PUBLIC_SIGNUP %} {% trans " or Sign up" %} {% endif %} {% endif %}