{% extends "base.html" %} {% block head %} {% endblock %} {% block title %}Time Spent Report{% endblock %} {% block content %}

Time Spent Report

{% if companies %}
{% endif %}
{% if group_by == 'user_computer' %} {% endif %} {% for entry in time_data %} {% if group_by == 'user_computer' %} {% endif %} {% endfor %}
Date User NameComputer NameCompany Total Time First Login Last Logout
{{ entry.date }} {{ entry.user_name }}{{ entry.computer_name }}{{ entry.company_name }} {{ entry.formatted_time }} {{ entry.first_login|format_datetime if entry.first_login else 'N/A' }} {{ entry.last_logout|format_datetime if entry.last_logout else 'N/A' }}
{% endblock %} {% block scripts %} {% endblock %}