{% include 'head.html' %}
{% include 'nav.html' %}
{{ header }}
Your account settings and host access
{% if current_user and current_user.avatar %}
{% else %}
{{ ((current_user.full_name if current_user else '') or (current_user.username if current_user else '?'))[:1] | upper }}
{% endif %}
{{ current_user.full_name if current_user and current_user.full_name else (current_user.username if current_user else '—') }}
@{{ current_user.username if current_user else '—' }}
{% if current_user and current_user.admin %}
Admin
{% else %}
User
{% endif %}
Sign out
Account
Username
{{ current_user.username if current_user else '—' }}
Full name
{% if current_user and current_user.full_name %}
{{ current_user.full_name }}
{% else %}
Not set
{% endif %}
Role
{{ 'Administrator' if current_user and current_user.admin else 'User' }}
Avatar
{% if current_user and current_user.avatar %}
{{ current_user.avatar }}
{% else %}
Not set (initials used)
{% endif %}
Notification Channels
{% if notification_channels %} {% for ch in notification_channels %}
{{ ch.type }}
{{ ch.name }}
{% endfor %} {% else %}
No personal notification channels configured.
{% endif %}
Host Access
Owner
{% if owned_hosts %} {% for h in owned_hosts %}
{{ h }}
{% endfor %} {% else %}
None
{% endif %}
Manager
{% if managed_hosts %} {% for h in managed_hosts %}
{{ h }}
{% endfor %} {% else %}
None
{% endif %}
Monitor
{% if monitored_hosts %} {% for h in monitored_hosts %}
{{ h }}
{% endfor %} {% else %}
None
{% endif %}