{% extends 'base.html' %} {% load static %} {% block title %}Performance Evaluation{% endblock %} {% block content %}

Performance Evaluation

Employee performance review and evaluation system

{{ total_evaluations }}

Total Evaluations

{{ completed_evaluations }}

Completed

{{ pending_evaluations }}

Pending

{{ average_score|floatformat:1 }}

Average Score

Search & Filter

Performance Evaluations

{% if evaluation_list %}
{% for evaluation in evaluation_list %} {% endfor %}
Employee Department Evaluator Period Score Status Due Date Last Updated Actions
{% if evaluation.employee.photo %} {{ evaluation.employee.get_full_name }} {% else %}
{{ evaluation.employee.first_name|first }}{{ evaluation.employee.last_name|first }}
{% endif %}
{{ evaluation.employee.get_full_name }}
{{ evaluation.employee.employee_id }}
{{ evaluation.employee.department.name|default:"Not assigned" }} {% if evaluation.evaluator %}
{{ evaluation.evaluator.first_name|first }}{{ evaluation.evaluator.last_name|first }}
{{ evaluation.evaluator.get_full_name }}
{% else %} Not assigned {% endif %}
{{ evaluation.get_period_display }} {% if evaluation.overall_score %}
{{ evaluation.overall_score|floatformat:1 }}/5
{% else %} Not scored {% endif %}
{{ evaluation.get_status_display }} {% if evaluation.due_date %} {{ evaluation.due_date|date:"M d, Y" }} {% else %} No due date {% endif %} {{ evaluation.updated_at|date:"M d, Y" }}
{% if is_paginated %} {% endif %} {% else %}
No evaluations found

Start by creating a new performance evaluation.

{% endif %}
{% endblock %} {% block js %} {% endblock %}