{% block head %}{% endblock %}
{% if current_user.is_authenticated %}
{{ t.app_title }}
{{ t.dashboard }}
{{ t.logs }}
{% if current_user.user_level in ['admin', 'developer'] %}
{{ t.admin }}
{% if current_user.user_level == 'admin' %}
{{ t.users }}
{% endif %}
{{ t.conda_environments }}
{% if current_user.user_level == 'admin' %}
{{ t.backup }}
{% endif %}
{% endif %}
{{ current_lang.upper() }}
English
Español
Italiano
Français
{{ current_user.username }}
{{ t.user_level[current_user.user_level] }}
{{ t.settings }}
{{ t.logout }}
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{% block content %}{% endblock %}
{% if current_user.is_authenticated %} {% endif %} {% block scripts %}{% endblock %}