{% block navbar %}
mgmtatlas.com
{% if current_user.is_authenticated %} {% if current_user.is_system_admin %}
System Admin
{% endif %} {% if current_user.is_company_admin %}
Company Admin
{% endif %}
My Profile
Logout
{% endif %}
{% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}