{% 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.
Manage UsersSet Employee or Client type for user accounts.
InvoicesCreate one-off invoices and monthly subscriptions (Stripe).
{% endif %} {% if can_write_financials %} Log TimeRecord work hours against specific contracts.
{% endif %} {% if can_write_financials %}Manage{% else %}View{% endif %} Time LogsReview{% if can_write_financials %} and edit{% endif %} 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 %}