{% extends "base.html" %} {% load static %} {% block title %}Accounting Dashboard{% endblock %} {% block content %}
Overview of all active and past contracts and their scopes.
New ContractEstablish a new project contract to track budgets.
New EmployeeAdd a new personnel member to your organization.
Log TimeRecord work hours against specific contracts.
Manage Time LogsReview and edit submitted time entries.
Client ReportsGenerate comprehensive reports for billing.
| Contract Name | Budget Hours | Logged Hours |
|---|---|---|
| {{ c.name }} | {{ c.budget_hours }} | {{ c.total_logged }} |
No contracts available.
{% endif %}| Employee Name | {% for c in contracts %}{{ c.name }} | {% endfor %}
|---|---|
| {{ row.employee }} | {% for ch in row.contract_hours %}{{ ch.hours }} | {% endfor %}
No employees available.
{% endif %}