mcprack
{% if current_user.is_authenticated %}
{% if current_user.is_admin %}
{{ _('Servers') }}
{{ _('Install') }}
{{ _('Users') }}
{{ _('Proxy') }}
{{ _('Audit Log') }}
{{ _('Diagnostics') }}
{{ _('OTEL') }}
{% endif %}
🇬🇧
🇨🇿
🇸🇰
🌙
☀️
{{ current_user.display_name[0].upper() }}
{{ current_user.display_name }}
{{ _('Catalog') }}
{% if current_user.is_admin %}
{{ _('All Servers') }}
{{ _('Install New Server') }}
{{ _('All Users') }}
{{ _('Proxy Instances') }}
{{ _('Audit Log') }}
{{ _('Vaultwarden Setup') }}
{{ _('OTEL Diagnostics') }}
{% endif %}
{{ _('Log out') }}
{% else %}
🇬🇧
🇨🇿
🇸🇰
🌙
☀️
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}