{% extends "base.html" %} {% block content %}
→ Go to Time Allocation Charts {% if current.is_active %}

{{ human_username }} {% if current.is_ticket %} is working on {{ current.description }} {{ current.chili_detail }} {% elif current.description %} is working on {{ current.description }} {% else %} hasn't specified what he's working on {% endif %} right now

and has been for {{ "%.2f"|format(current.total_hours) }} hours.

{% else %}

{{ human_username }} is clocked-out.

{% if current.description %} But he was last working on {% if current.ticket_number %} {{ current.description }} {% else %} {{ current.description }} {% endif %} and did so for {{ "%.2f"|format(current.total_hours) }} hours. {% else %} He didn't specify what he was working on for those {{ "%.2f"|format(current.total_hours) }} hours. {% endif %}

{% endif %}
{% if todays_tasks %}

Today's tasks so far:

{% for entry in todays_tasks %} {% endfor %} {% if hours_total %} {% endif %}
Started Ended Hours Description
{{ entry.start_time }} {% if entry.end_time %} {{ entry.end_time }} {% endif %} {{ "%.2f"|format(entry.hours) }} {% if entry.ticket_number %} [#{{ entry.ticket_number}}] {{ entry.chili_detail }} {% else %} {{ entry.description }} {% endif %}
{{ "%.2f"|format(hours_total) }}
{% endif %}
{% endblock %}