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

Invoice {{ project.name }} Hours {% if from_date %}from {{ from_date.date }} to {{ to_date.date }}{% else %}through {{ to_date.date }}{% endif %}


{% csrf_token %} {{ invoice_form }}
   

{% 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 %}