Ctrl+K
{% if is_module_enabled('team_chat') %}
{% endif %}
{% if current_user.is_authenticated %}
{% endif %}
{% if current_user.is_authenticated and ai_enabled %}
{% endif %}
{% if current_user.is_authenticated and not is_license_activated %}
{% endif %}
- {{ _('Language') }} {% for code, label in available_languages.items() %}
- {{ label }} {% if code == current_language_code %} {% endif %} {% endfor %}
-
{{ current_user.display_name if current_user.is_authenticated else _('Guest') }}{{ current_user.email if current_user.is_authenticated else '' }}
- {{ _('My Profile') }}
- {{ _('My Settings') }} {% if current_user.is_authenticated %}
- {{ _('License') }} {% endif %} {% if current_user.is_authenticated and not is_license_activated %} {% endif %}
- {{ _('Logout') }}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{% endfor %}
{% endif %}
{% endwith %}
{% if current_user.is_authenticated and current_user.ui_show_donate and not is_license_activated %}
{{ _('Enjoying TimeTracker?') }}
{{ _('Support independent development — licenses are supporter badges, not paywalls.') }}
{{ _('Built by an independent developer') }}
{% endif %}