{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Payroll Summary{% endblock %} {% block content %}
Warning: The following users have unverified time during this period:
Warning: The following users have unapproved time during this period:
Name | {% for date in date_headers %}{{date|date:"M/d"}} | {% endfor %}Overtime |
---|---|---|
{{name}} | {% for num in hours %}{{num}} | {% endfor %}
No entries found.
{% endif %}Name | Billable | Non-Billable | Total Worked | Paid Leave | Grand Total | ||
---|---|---|---|---|---|---|---|
{{ name }} | {% for num in hours|slice:"0:2" %}{{num.0|default:""}} | {% if num.1 %}({{num.1}}%){% endif %} | {% endfor %}{{hours.2}} | {% for desc in descs %} {{desc.0}}: {{desc.1}} {% endfor %} | {{all}} |
No entries found.
{% endif %} {% endblock %}