{% extends "base.html" %} {% load static %} {% block title %}Time Entries | HR Management{% endblock %} {% block css %} {% endblock %} {% block content %}

Time Entries view and manage employee time records

Total Hours

{{ total_hours|default:"0" }}

Current period

Approved

{{ approved_hours|default:"0" }}

Hours approved

Pending

{{ pending_hours|default:"0" }}

Hours pending approval

Overtime

{{ overtime_hours|default:"0" }}

Overtime hours

Time Entries

Clear Filters
{% for entry in time_entries %} {% empty %} {% endfor %}
Employee Date Time Hours Type Status Actions
{{ entry.employee.get_full_name }}
{{ entry.employee.get_full_name }} {{ entry.employee.job_title }}
{{ entry.date|date:"M d, Y" }} {{ entry.start_time|time:"H:i" }} - {{ entry.end_time|time:"H:i" }} {{ entry.hours }} hrs {% if entry.is_overtime %} Overtime {% else %} Regular {% endif %} {% if entry.status == 'PENDING' %} Pending {% elif entry.status == 'APPROVED' %} Approved {% elif entry.status == 'REJECTED' %} Rejected {% endif %}
{% if entry.status == 'PENDING' and perms.hr.approve_time_entry %} {% endif %}
No time entries found.
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}