{% block javascript %}{% endblock %} {% block css %}{% endblock %}
{% if user.is_authenticated %}
{{ user.email }}
{% if user.is_staff %}
Admin
{% endif %}
Change Password
Logout
{% else %}
Register
Login
{% endif %}
{% include "crm/_quick_search.html" %}
Dashboard
{% if perms.crm.view_profile %}
People
{% endif %} {% if perms.crm.view_business %}
Businesses
{% endif %} {% if perms.timepiece.view_project %}
Projects
{% endif %} {% if perms.timepiece.add_entry %}
Time Tracking
{% endif %} {# {% if perms.ledger.view_exchange %} #} {#
Exchanges
#} {# {% endif %} #} {# {% if perms.ledger.view_account %} #} {#
Accounts
#} {# {% endif %} #} {# {% if perms.ledger.view_account_reports %} #} {#
Reports
#} {# {% endif %} #}
{% block sub_navigation %}{% endblock %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% if notifications %}
{% for message in notifications %}
{{ message }}
{% endfor %}
{% endif %} {% block content %}{% endblock %}