Simple Time Clock

Currently Clocked In

{% if clocked_in_users %} {% else %}

No users are currently clocked in.

{% endif %}
{% if all_user_reports %}

Last 7 Days Report

{% for report in all_user_reports %} {% endfor %}
User Total Hours Worked Paid Hours
{{ report.name }} {{ report.total_hours }} {{ report.paid_hours }}

{% endif %}

User
Clock Actions
Begin Date
End Date
Comments
Report

{% if report_hours is not none %}

Custom Report

Total Hours Worked Paid Hours
{{ report_hours.total_hours }} {{ report_hours.paid_hours }}
{% endif %}