{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% block title %}Payroll Summary{% endblock %} {% block content %}
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.1}} {{name.0}} | {% 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 %}