Simple Time Clock
Currently Clocked In
{% if clocked_in_users %}
{% for user in clocked_in_users %}
{{ user.name }}
{% endfor %}
{% else %}
No users are currently clocked in.
{% endif %}
User
{% for user in users %}
{{ user.name }}
{% endfor %}
Clock Actions
Clock In
Clock Out
Begin Date
End Date
Report
Generate Report
{% if report_hours is not none %}
Total Hours Worked
{{ report_hours }}
{% endif %}