{% extends "base.html" %} {% block head %} {% endblock %} {% block title %}Time Spent Report{% endblock %} {% block content %}
| Date | User Name | {% if group_by == 'user_computer' %}Computer Name | {% endif %}Company | Total Time | First Login | Last Logout |
|---|---|---|---|---|---|---|
| {{ entry.date }} | {{ entry.user_name }} | {% if group_by == 'user_computer' %}{{ entry.computer_name }} | {% endif %}{{ 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' }} |