{% extends 'base.html' %} {% block content %}
| Employee ID | Name | Type | Designation | Department | Joining Date | Salary | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ employee.employee_id }} |
{{ employee.full_name }} {{ employee.phone or 'No phone' }} |
{% if employee.employee_type == 'meat_shop' %} 🏪 Shop {% elif employee.employee_type == 'delivery' %} 🚚 Delivery {% elif employee.employee_type == 'office' %} 🏢 Office {% elif employee.employee_type == 'production' %} 🏭 Production {% elif employee.employee_type == 'management' %} 👔 Management {% else %} {{ employee.employee_type|title }} {% endif %} | {{ employee.designation }} | {{ employee.department }} | {{ employee.joining_date|date_format }} |
{{ employee.salary|currency }} {{ employee.salary_type|title }} |
{% if employee.status == 'active' %} ✅ Active {% elif employee.status == 'inactive' %} ❌ Inactive {% else %} ⚠️ {{ employee.status|title }} {% endif %} |
📋 Employee Records: Keep complete information including emergency contacts
⏰ Attendance: Track daily check-ins and working hours
💰 Expenses: Approve and track employee expense claims
💳 Payments: Process salaries, bonuses, and reimbursements