{% extends "layout.html" %} {% block body %}

Time Entries

Filter:

Start: {{ dates[0] }}
End: {{ dates[1] }}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %} {% if time_entries %} {% for time in time_entries %} {% endfor %}
ID Name Start Date Start Time End Date End Time Total
{{ time.employee_id }} {% for employee in employees %} {% if employee.id == time.employee_id %} {{employee.first_name}} {{employee.last_name}} {% endif %} {% endfor %} {{ time.date_start }} {{ time.start }} {{ time.date_end }} {{ time.end }} {{ time.total }}
Total {{ total[0] }}:{{ total[1] }}:00
{% else %} There is no data in time entry land! {% endif %} {% endblock %}