{% extends "base.html" %} {% block content %}

Project Reports

View and export project reports by date range

Back to Projects
Filters
Total Projects

{{ total_projects }}

Period: {{ period_label }}
Total Budget

{{ "%.2f"|format(total_budget) }}

Total Actual Cost

{{ "%.2f"|format(total_actual) }}

Variance

{{ "%.2f"|format(total_budget - total_actual) }}

By Status
{% for status, count in status_breakdown.items() %}
{{ status }} {{ count }}
{% endfor %}
By Priority
{% for priority, count in priority_breakdown.items() %}
{{ priority }} {{ count }}
{% endfor %}
By Assigned User
{% for user, count in assignment_breakdown.items() %}
{{ user }} {{ count }}
{% endfor %}
Projects ({{ total_projects }}) {{ period_label }}
{% for project in projects %} {% else %} {% endfor %}
Code Project Name Client Status Assigned To Budget Actual Progress Created
{{ project.project_code }} {{ project.project_name|truncate(25) }} {{ project.customer.company_name|truncate(20) }} {{ project.status or "Unknown" }} {{ project.assigned_to or "Unassigned" }} {{ "%.2f"|format(project.budget or 0) }} {{ "%.2f"|format(project.actual_cost or 0) }}
{{ project.progress or 0 }}%
{{ project.created_at.strftime('%d %b %Y') if project.created_at else "" }}
No projects found for the selected period
{% endblock %}