{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% block title %}Project Invoice Summary{% endblock %} {% block content %}

Project Invoice Summary

{% date_filters "months_no_range" %}
{% for cal in cals %} {{ cal|safe }} {% endfor %}
{% if unverified %}

Warning: The following users have unverified time during this period:

{% endif %} {% if unapproved %}

Warning: The following users have unapproved time during this period:

{% endif %} {% regroup project_totals by project__type__label as type_list %} {% for type in type_list %}

Summary of {{ type.grouper }} Entries

{% regroup type.list by project__name as project_list %} {% for project in project_list %} {% build_invoice_row project.list to_date from_date %} {% endfor %}
Project name Uninvoiced Hours
{{ project.grouper }}
{% endfor %} {% endblock %}