{% load helpers %}
{% if result.status == 'REVOKED' %}
{% if result.cancel_type == 'terminated' %}
Terminated
{% elif result.cancel_type == 'reaped' %}
Reaped
{% elif result.cancel_type == 'abandoned' %}
Abandoned
{% else %}
{{ result.cancel_type }} (unrecognized)
{% endif %}
{% else %}
{{ None | placeholder }}
{% endif %}