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

Invoice details for {{ project.name }} hours {% if from_date %} from {{ from_date }} to {{ to_date }} {% else %} through {{ to_date }}{% endif %}

{% include 'timepiece/time-sheet/invoice/_invoice_detail.html' %} {% if totals %}

Totals

{% for type, hours in totals %} {% endfor %}
Activity Type Total Hours
{{ type }} {{ hours }}

{% endif %}

Selected Entries

{% include 'timepiece/time-sheet/_weekly_entry_list.html' %} {% endblock %}