{% extends 'standingsmanager/_base.html' %} {% load i18n %} {% load static %} {% block details %}

Pending Standing Revocations {{ revocation_count }}

{% if revocations %}

Review and approve or reject pending standing revocation requests.

{% for rev in revocations %} {% endfor %}
Entity Type Requester Main Character Reason Requested Age Actions
{% if rev.entity_type == 'character' %} {{ rev.entity_name }} {% else %} {{ rev.entity_name }} {% endif %} {{ rev.entity_name }} {{ rev.entity_type_display }} {% if rev.is_auto %} System (Auto) {% else %} {{ rev.requester_name }} {% endif %} {% if rev.is_auto %} N/A {% else %} {{ rev.requester_main }} {% endif %} {% if rev.reason == "user_request" %} {{ rev.get_reason_display }} {% elif rev.reason == "lost_permission" %} {{ rev.get_reason_display }} {% elif rev.reason == "missing_token" %} {{ rev.get_reason_display }} {% else %} {{ rev.get_reason_display }} {% endif %} {{ rev.request_date|date:"Y-m-d H:i" }} {% if rev.age_days == 0 %} Today {% elif rev.age_days < 3 %} {{ rev.age_days }} day{{ rev.age_days|pluralize }} {% elif rev.age_days < 7 %} {{ rev.age_days }} days {% else %} {{ rev.age_days }} days {% endif %}
{% else %}
No pending standing revocations.
{% endif %}

Help

Approving Revocations

When you approve a standing revocation:

Rejecting Revocations

When you reject a standing revocation:

Revocation Reasons

Auto-Generated Revocations

Some revocations are automatically created by the system when:

These are marked as "System (Auto)" and should generally be approved to maintain system integrity.

{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_css %} {{ block.super }} {% include 'bundles/datatables-css.html' %} {% endblock %}