{% extends "admin/change_form.html" %} {% block content %} {% if approval_pending_delete %}
🗑️
Pending deletion
This object is marked for deletion and is awaiting approval. Editing is disabled until the request is approved or rejected.
{% endif %} {% if approval_pending %}
Pending approval
These field changes are awaiting a reviewer's approval. Listed fields are locked, and the object cannot be deleted until each request is approved or rejected.
{% for cr in approval_pending %} {% endfor %}
Field Current → Requested Status Requested by
{{ cr.field_name }} {{ cr.old_value|default:"—" }}  →  {{ cr.new_value|default:"—" }} {{ cr.status }} {{ cr.requested_by|default:"—" }}
{% endif %} {{ block.super }} {% endblock %}