{% extends "base.html" %} {% load humanize %} {% load if_extra %} {% block title %}View Application{% endblock %} {% block content %}

Application Details

{% ifnotequal app.status 5 %}

Actions

{% if app.status < 1 %} Submit Application,  {% else %} Withdraw Application,  {% endif %} Add Message, {% if hrstaff %} Add Staff Note,  {% if app.status < 2 or app.status = 4 %} Reject Application,  {% ifequal app.blacklisted 0 %} Accept Application,  {% endifequal %} {% ifnotequal app.status 4 %} Mark as In Query,  {% endifnotequal %} {% endif %} {% ifequal app.status 3 %} Mark as Complete,  {% endifequal %} {% endif %} {% endifnotequal %}

{% if audit %}

Event Log

{% for a in audit %} {% endfor %}
Event TypeUserDateEvent Details
{{ a.get_event_display }}{{ a.user }}{{ a.date }}{{ a.text }}
{% endif %} {% if app.blacklisted %}

Blacklist Triggers

{% for a in app.blacklist_values %} {% endfor %}
Blacklist TypeBlacklisted ValueReasonSource
{{ a.get_type_display }}{{ a.value }}{{ a.reason }}{{ a.source }}
{% endif %} {% if app.recommendation_set.all %}

Recommendations

{% endif %} {% if hrstaff %}

EVE Characters

{% for acc in app.user.eveaccount_set.all %} {% for char in acc.characters.all %} {% endfor %} {% endfor %}
CharacterCorp / AllianceISKSPLinks
{{ char.name }} {{ char.corporation }}{% if char.corporation.alliance %} / {{ char.corporation.alliance }}{% endif %} {{ char.balance|intcomma }} ISK {{ char.total_sp|intcomma }} SP / EveGate Profile
{% if app.user.redditaccount_set.all %}

Reddit Accounts

{% for acc in app.user.redditaccount_set.all %} {% endfor %}
AccountKarmaValidatedCreation Date
{{ acc.username }} {{ acc.link_karma }} / {{ acc.comment_karma }} {% if acc.validated %}Validated{%else %}NOT VALIDATED{% endif %} {{ acc.date_created }}

Recent Reddit Posts

Load recent Reddit posts
{% endif %} {% endif %} {% endblock %}