{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% block title %}{{ person }} Time Sheet{% endblock %} {% block content %}

{{ person.first_name }} {{ person.last_name}}'s Time Sheet ({{ window.date|date:"N j" }} — {{ window.end_date|date:"N j" }})

{% if entries %} {% for entry in entries %} {% ifchanged entry.start_time|date:"W" %} {% endifchanged %} {% ifchanged entry.start_time|date %} {% else %} {% endifchanged %} {% if entry.is_editable %}{% endif %} {% endfor %}
Date Project Activity Location Time In Time Out Breaks Hours
Week of {{ entry.start_time|date:"m/d/Y (D)" }}
{{ entry.start_time|date:"m/d/Y (D)" }}{{ entry.project.name }} {{ entry.activity.name }} {{ entry.location }} {{ entry.start_time|date:"P" }} {{ entry.end_time|date:"P" }} {{ entry.seconds_paused|seconds_to_hours }} {{ entry.hours }}Edit
Overall total for the period: {{ total|floatformat:2 }}
{% else %}

No entries exist for this time sheet.

{% endif %} {% if project_entries %} {% for entry in project_entries %} {% endfor %}
Project Summary
{{ entry.project__name}} {{ entry.sum }}
{% endif %}
Billable Summary
Billable{{summary.billable}}
Non-billable{{summary.non_billable}}
Invoiced{{summary.invoiced}}
Uninvoiced{{summary.uninvoiced}}

{% endblock %}