{% extends "admin/change_form.html" %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% 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 Requested change Status Requested by
{{ cr.field_name }} {% for action, text in cr.rows %}
{{ action }} {{ text }}
{% empty %} — {% endfor %}
{{ cr.status }} {{ cr.requested_by|default:"—" }}
{% endif %} {{ block.super }} {% endblock %}