{% extends 'timepiece/invoice/base.html' %}
{% load timepiece_tags bootstrap_toolkit %}
{% load url from future %}
{% block title %}Invoice Hours for Time Sheet{% endblock title %}
{% block crumbs %}
{{ block.super }}
/ Confirm Invoice
{% endblock crumbs %}
{% block content %}
Invoice {{ project.name }} Hours {% if from_date %}from {{ from_date.date|date:'M j, Y' }} to {{ to_date.date|date:'M j, Y' }}{% else %}through {{ to_date.date|date:'M j, Y' }}{% endif %}
Billable Totals
Activity Type |
Total Hours |
{% for name, hours_activities in billable_totals %}
{% for name, hours in hours_activities.1 %}
{{ name|title }} |
{{ hours }} |
{% endfor %}
{% endfor %}
Non-billable Totals
Activity Type |
Total Hours |
{% for name, hours_activities in nonbillable_totals %}
{% for name, hours in hours_activities.1 %}
{{ name|title }} |
{{ hours }} |
{% endfor %}
{% endfor %}
Selected Entries
{% include 'timepiece/invoice/_weekly_entry_list.html' %}
{% endblock content %}