Home
{% if g.user %}
History
About
{% if g.user.is_admin %}
Admin
Profile
Config
Dashboard
Admin Dashboard
Manage Users
Manage Teams
Manage Projects
System Settings
{% if g.user.team_id %}
Team Hours
{% endif %}
Logout
{% elif g.user.role in [Role.TEAM_LEADER, Role.SUPERVISOR] %}
{{ g.user.username }}
Profile
Config
Dashboard
{% if g.user.role == Role.SUPERVISOR %}
Manage Projects
{% endif %} {% if g.user.team_id %}
Team Hours
{% endif %}
Logout
{% else %}
{{ g.user.username }}
Profile
Config
Logout
{% endif %} {% else %}
Login
Register
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}