{% extends 'index.html' %} {% block content %} {% load mathfilters %} {% load static %}
Active Employees
{{active_employees}}
{{active_ratio}}%
Total Employees
{{total_employees}}
100%
Incactive Employees
{{inactive_employees}}
{{inactive_ratio}}%
Employee Chart
Gender Chart
Department Chart
{% for employee in birthdays %}
Username
{% trans "Birthday" %} {{employee}} {{employee.dob}}, {% if employee.days_until_birthday == 0 %} {% trans "Today" %} {% elif employee.days_until_birthday == 1 %} {% trans "Tomorrow" %}
{% else %} {% trans "In" %} {{ employee.days_until_birthday }} {% trans "days" %}
{% endif %}
{% endfor %}
    {% for emp in birthdays %} {% if forloop.counter == 1 %}
  • {% else %}
  • {% endif %} {% endfor %}
Candidate on Onboard
  • {{cand}}
    Aliza B
{% endblock content %}