{% if current_user_name %}Hello, {{ current_user_name }}{% endif %}
{% if has_permission('view_index') %}
Home
{% endif %}
{% if has_permission('view_devices') %}
Devices
{% endif %}
{% if has_permission('view_racks') %}
Racks
{% endif %}
{% if has_permission('view_admin') %}
Admin
{% endif %}
{% if has_permission('view_users') %}
Users
{% endif %}
{% if has_permission('view_audit') %}
Audit Log
{% endif %}
{% if has_permission('view_help') %}
Help
{% endif %}
{% if current_user_name %}
Logout
{% endif %}