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

{{ _('Project Report') }}

Export to Excel
{% for project in projects_data %} {% else %} {% endfor %}
Project Total Hours Billable Hours Billable Amount
{{ project.name }} {{ "%.2f"|format(project.total_hours) }} {{ "%.2f"|format(project.billable_hours) }} {{ "%.2f"|format(project.billable_amount) }}

{{ _('No data for the selected period.') }}

{{ _('Try a different date range or ensure time has been logged on projects.') }}

{% endblock %}