{% block head_extra %}{% endblock %}
{% block logo %}
⚛ devqubit{% if current_user %}
teams
{% endif %}
{% endblock %}
{% block nav_start %}{% endblock %}
Runs
Projects
Groups
Compare
Search
{% block nav_items %}{% endblock %}
{% block nav_right %} {# Teams user menu - shown when current_user is available #} {% if current_user %}
{{ (current_user.name or current_user.email)[:2] | upper }}
{{ current_user.name or current_user.email.split('@')[0] }}
{{ current_user.name or 'User' }}
{{ current_user.email }}
API Tokens
Profile
{% if current_user.is_admin %}
Admin
{% endif %}
Sign Out
{% endif %} {% endblock %}
{% block messages %} {# Flash messages / alerts rendered here #} {% endblock %} {% block content %}{% endblock %}
{% block footer %}{% endblock %} {% block scripts %} {% endblock %}