{% extends "base.html" %} {% block title %}Employee Twin{% endblock %} {% block page_title %}Employee Twin{% endblock %} {% block content %}
No employee records in database yet.
Your company has approximately {{ company.employee_count if company and company.employee_count else 0 }} employees.
| Employee ID | Name | Department | Job Title | Salary | Status | Rating | Actions | |
|---|---|---|---|---|---|---|---|---|
{{ e.employee_id or ('EMP-' ~ e.id) }} |
{{ e.full_name() or '-' }} | {{ e.email or '-' }} | {{ dept_map.get(e.department_id, 'Unassigned') }} | {{ e.job_title or '-' }} | {{ e.salary | format_currency }} | {{ e.status|title }} | {% if e.performance_rating %} {% else %}-{% endif %} |