{% extends "base.html" %} {% block title %}Timer{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% set time_entry_start = "" %} {% set time_entry_name = "" %} {% if time_entry %} {% set time_entry_start = time_entry.start %} {% set time_entry_name = time_entry.name %} {% endif %}
Name | Start | Stop | Duration |
---|---|---|---|
{{row[1]}} | {{convert_datetime(row[2], tz_out=TZ, fmt_in=FORMAT_DATE+' '+FORMAT_TIME+'.%f', fmt_out=FORMAT_TIME)}} | {{convert_datetime(row[3], tz_out=TZ, fmt_in=FORMAT_DATE+' '+FORMAT_TIME+'.%f', fmt_out=FORMAT_TIME) if row[3] else ''}} | {{format_duration(row[4])}} |