Simple Time Clock
Currently Clocked In
{% if clocked_in_users %}
{% for user in clocked_in_users %}
{{ user.name }} — since
{{ user.since }}
{% endfor %}
{% else %}
No users are currently clocked in.
{% endif %}
{% if all_user_reports %}
Last 7 Days Report
User
Total Hours Worked
Paid Hours
{% for report in all_user_reports %}
{{ report.name }}
{{ report.total_hours }}
{{ report.paid_hours }}
{% endfor %}
{% endif %}
User
{% for user in users %}
{{ user.name }}
{% endfor %}
Clock Actions
Clock In
Clock Out
Pay
Begin Date
End Date
Report
Generate Report
{% if report_hours is not none %}
Custom Report
Total Hours Worked
Paid Hours
{{ report_hours.total_hours }}
{{ report_hours.paid_hours }}
{% endif %}