{% extends "public/base.html" %} {% load staticfiles %} {% load bootstrap %} {% load i18n %} {% block title %}Alliance Auth - View Application{% endblock %} {% block page_title %}{% trans "View Application" %}{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

{% trans "View Application" %}

{% if app.approved %}
{% trans "Approved" %}
{% elif app.approved == False %}
{% trans "Denied" %}
{% else %}
{% trans "Pending" %}
{% endif %} {% if app.reviewer_str %}
{% trans "Reviewer:" %} {{ app.reviewer_str }}
{% endif %}
{% trans "Applicant" %}
{% trans "User" %} {% trans "Main Character" %}
{{ app.user }} {{ app.main_character }}
{% trans "Characters" %}
{% for char in app.characters %} {% endfor %}
{% trans "Name" %} {% trans "Corp" %} {% trans "Alliance" %}
{{ char.character_name }} {{ char.corporation_name }} {{ char.alliance_name }}
{% for response in responses %}
{{ response.question.title }}
{{ response.answer|linebreaksbr }}
{% endfor %}
{% if buttons %}
{% if perms.auth.human_resources %}
{% trans "Actions" %}
{% if app.approved == None %} {% if app.reviewer == user %} {% if perms.hrapplications.approve_application %} {% trans "Approve" %} {% endif %} {% if perms.hrapplications.reject_application %} {% trans "Reject" %} {% endif %} {% if perms.hrapplications.delete_application %} {% trans "Delete" %} {% endif %} {% elif not app.reviewer %} {% trans "Mark in Progress" %} {% endif %} {% endif %} {% if perms.hrapplications.add_applicationcomment %} {% endif %} {% if perms.hrapplications.view_apis %} {% for api in apis %} {% trans "API" %} {{ api.api_id }} {% endfor %} {% endif %}
{% for comment in comments %}
{{ comment.text|linebreaks }}
{% endfor %}
{% endif %}
{% endif %}
{% if perms.hrapplications.add_applicationcomment %} {% endif %} {% endblock %}