{# Navigation brand, nav toggle bar #}
{# Navigation menu / links bar #}
Home
{% if current_user.is_authenticated and current_user.gm_level >= 3 %}
{# General Moderation Links #}
AccountsCharactersProperties
{% endif %}
{% if current_user.is_authenticated and current_user.gm_level == 9 and config.REQUIRE_PLAY_KEY %}
{# Play Keys #}
Play Keys
{% endif %}
{% if current_user.is_authenticated and current_user.gm_level >= 2 %}
Reports
{% endif %}
{# About always right most #}
About
{% endif %}
{# Only show logout if unauthenticated #}
{% if current_user.is_authenticated %}
Logout
{% endif %}