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 Actions
{{ report.name }} {{ report.total_hours }} {{ report.paid_hours }}
    {% for action in report.actions %}
  • {{ action }}
  • {% endfor %}

{% endif %}

User
Clock Actions
Begin Date
End Date
Comments
Report

{% if user_report is not none %}

Custom Report

Total Hours Worked Paid Hours Actions
{{ user_report.total_hours }} {{ user_report.paid_hours }}
    {% for action in user_report.actions %}
  • {{ action }}
  • {% endfor %}
{% endif %}