{% load i18n %}
{% translate "Applying Character" %}:
{{ application.eve_character.character_name }}
{% translate "Status" %}:
{% if application.status == application.STATUS_NEW or application.status == application.STATUS_REVIEW or application.status == application.STATUS_REVIEW %} {{ application.get_status_display }} {% elif application.status == application.STATUS_WAIT %} {{ application.get_status_display }} {% elif application.status == application.STATUS_PROCESSED %} {{ application.get_status_display }} {% else %} {{ application.get_status_display }} {% endif %}
{% translate "Decision" %}:
{% if application.decision == application.DECISION_ACCEPT %} {{ application.get_decision_display }} {% elif application.decision == application.DECISION_REJECT %} {{ application.get_decision_display }} {% else %} {{ application.get_decision_display }} {% endif %}
{% translate "Review By" %}:
{% if application.reviewer %}{{ application.reviewer.character_name }}{% else %}-{% endif %}
{% translate "Decision By" %}:
{% if application.decision_by %}{{ application.decision_by.character_name }}{% else %}-{% endif %}
{% translate "Main Character" %}:
{% if application.main_character.next_character %}{% endif %}{{ application.main_character.character_name }}{% if application.main_character.next_character %}{% endif %}
{% translate "Submitted On" %}:
{{ application.submitted_on }}
{% translate "Status On" %}:
{% if application.status_on %}{{ application.status_on }}{% else %}-{% endif %}
{% translate "Decision On" %}:
{% if application.decision_on %}{{ application.decision_on }}{% else %}-{% endif %}
{% translate "Closed On" %}:
{% if application.closed_on %}{{ application.closed_on }}{% else %}-{% endif %}