{% load humanize %}
{% block title %}Construction Accounting{% endblock %} | {{ active_project.name|default:"Construction Partnership" }}
{% if user.is_authenticated %}
Construction
Accounting
{% for p in all_projects %}
{{ p.name }}
{% endfor %}
Dashboard
Members
Deposits
Expenses
Material Stock
Labor
Contractors
Cash / Bank
Reports
{% if project_role or user.is_superuser %}
Company Admin
Flats / Units{% if project_role != "admin" and not user.is_superuser %}
(View)
{% endif %}
Flat Sales{% if project_role != "admin" and not user.is_superuser %}
(View)
{% endif %}
{% if project_role == "admin" or user.is_superuser %}
Users & Roles
{% endif %} {% if user.is_superuser %}
Company Registrations
Admin Panel
{% endif %} {% endif %}
{% block page_title %}{% endblock %}
{{ project_role|default:user.get_role_display|title }}
{{ user.get_full_name|default:user.username }}
{% csrf_token %}
Logout
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% block content %}{% endblock %}
{% else %} {% block guest_content %}{% endblock %} {% endif %} {% block extra_js %}{% endblock %}