{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Make Invoices{% endblock %} {% block content %}

Outstanding Hours

{% date_filters "months_no_range" %}
{{ date_form }}
{% show_cal to_date -1 %}
{% show_cal to_date 0 %}
{% 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 %} {% endfor %}
Project name Status Uninvoiced Hours
{{ project.grouper }} {{ project.list.0.project__status__label|title }} {% get_uninvoiced_hours project.list %} {% if from_date %} Make Invoice {% else %} Make Invoice {% endif %}
{% endfor %} {% endblock %}