{% extends "base.html" %} {% load static %} {% block title %}Time Entries | HR Management{% endblock %} {% block css %} {% endblock %} {% block content %}
Current period
Hours approved
Hours pending approval
Overtime hours
| Employee | Date | Time | Hours | Type | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ 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 %} | |
| No time entries found. | ||||||