{% block headextra %}{% endblock %}
{{ config.USER_APP_NAME }}
{% for item in current_menu.children recursive %} {% if item.visible %}
{{ item.text }} {% if item.children %}
{% endif %}
{% if item.children %}
{{ loop(item.children) }}
{% endif %}
{% endif %} {% endfor %}
{% if type %}
{% endif %}
{% if current_user.is_authenticated %} {% if todo_list_count is not none %}
{% if todo_list_count > 0 %}
{{ todo_list_count }}
{% else %}
{% endif %}
{% else %}
{% endif %}
{% if current_user.notifications %}
{% set num_notifs = current_user.notifications | length %} {% if num_notifs > 60 %}
😢
{% else %}
{{ num_notifs }}
{% endif %} {% else %}
{% endif %}
{{ current_user.display_name }}
Profile
To do list
{% if current_user.rank.atLeast(current_user.rank.EDITOR) or check_global_perm(current_user, "CREATE_TAG") %}
{% endif %} {% if current_user.rank.atLeast(current_user.rank.MODERATOR) %}
{{ _("Audit Log") }}
{% if current_user.rank == current_user.rank.ADMIN %}
{{ _("Admin") }}
{% else %} {% if current_user.rank == current_user.rank.MODERATOR %}
{{ _("License Editor") }}
{% endif %} {% endif %} {% endif %} {% if current_user.rank.atLeast(current_user.rank.EDITOR) %}
{{ _("Restore Package") }}
{% endif %} {% if check_global_perm(current_user, "EDIT_TAGS") %}
{{ _("Tag Editor") }}
{% elif check_global_perm(current_user, "CREATE_TAG") %}
{{ _("Create Tag") }}
{% endif %}
Settings
{{ _("Sign out") }}
{% else %}
{{ _("Sign in") }}
{% endif %}
{% block flash_messages %} {%- with messages = get_flashed_messages(with_categories=true) -%} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {%- endwith %} {% endblock %} {% block container %}
{% block content %} {% endblock %}
{% endblock %}
{% block scriptextra %}{% endblock %}