Punch
{{ username }}
Sign off
{% match error_message %} {% when Some with (error) %}
Error:
{{ error }}
{% when None %} {% endmatch %} {% match report %} {% when Some with (report) %} {% match report.next_direction %} {% when PunchDirection::In %}
Punch In
{% when PunchDirection::Out %}
Punch Out
{% endmatch %}
Recent day totals
Day
Gross time
Net time
{% for day in report.days %}
{{ day.0 }}
{{ day.1.gross }}
{{ day.1.net }}
{% endfor %}
Recent week totals
Week
Gross time
Net time
{% for week in report.weeks %}
{{ week.0 }}
{{ week.1.gross }}
{{ week.1.net }}
{% endfor %}
{% when None %}
Error:
Could not generate report. See server logs.
{% endmatch %}