{% extends "base.html" %} {% block content %}
and has been for {{ "%.2f"|format(current.total_hours) }} hours.
{% else %}{% 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 %}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) }} |