{% extends "base.html" %} {% load static %} {% block title %} Delete Performance Review | HR Management {% endblock %} {% block css %} {% endblock %} {% block content %}

Delete Performance Review

Confirm Deletion

Warning!

You are about to permanently delete this performance review. This action cannot be undone.

Please review the information below carefully before proceeding.

Review Information
Employee: {{ review.employee.get_full_name }}
Reviewer: {{ review.reviewer.get_full_name }}
Review Type: {{ review.get_review_type_display }}
Status: {{ review.get_status_display }}
Review Period: {{ review.period_start|date:"M d, Y" }} - {{ review.period_end|date:"M d, Y" }}
Due Date: {{ review.due_date|date:"M d, Y" }}
Overall Score: {{ review.overall_score|default:"Not rated" }}
Created: {{ review.created_at|date:"M d, Y H:i" }}
Last Updated: {{ review.updated_at|date:"M d, Y H:i" }}
Impact Assessment

Deleting this performance review will have the following impacts:

  • Employee Records: This review will be permanently removed from the employee's performance history.
  • HR Analytics: Performance metrics and trends will be affected.
  • Audit Trail: While the deletion will be logged, the review content will be unrecoverable.
  • {% if review.status == 'COMPLETED' %}
  • Compliance Risk: Deleting a completed review may violate record retention policies.
  • {% endif %} {% if attachments %}
  • Attachments: {{ attachments|length }} document(s) associated with this review will be deleted.
  • {% endif %} {% if goals %}
  • Goals: {{ goals|length }} goal(s) associated with this review will be deleted.
  • {% endif %}
Alternative Actions

Instead of deleting this review, consider these alternatives:

{% csrf_token %}
{% if review.status == 'COMPLETED' %}
A reason is required for deleting completed reviews for audit purposes.
{% endif %}
Cancel
{% endblock %} {% block js %} {% endblock %}