{% comment %} {% endcomment %} {% load i18n %} {% if app.status == app.STATUS_NEW %}
{{ app.get_status_message }}
{% elif app.status == app.STATUS_REVIEW %}
{{ app.get_status_message }}
{% elif app.status == app.STATUS_WAIT %}
{{ app.get_status_message }}
{% elif app.decision == app.DECISION_ACCEPT %}
{{ app.get_decision_message }}
{% elif app.decision == app.DECISION_REJECT %}
{{ app.get_decision_message }}
{% elif app.decision == app.DECISION_WITHDRAW %}
{{ app.get_decision_message }}
{% else %}
{{ app.get_status_display }}
{% endif %}