{% extends "base.html" %} {% load humanize %} {% load if_extra %} {% load installed %} {% 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|date:"Y/m/d H:i:s" }}{{ a.text|linebreaks }}
{% 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

{% for rec in app.recommendation_set.all %} {% endfor %}
UserCharacterCorporationValid RecommendationTotal User Recomendations
{{ rec.user }} {{ rec.user_character }} {{ rec.user_character.corporation }} {% if rec.is_valid %}Yes{% else %}No{% endif %} {{ rec.user.recommendation_set.all.count }}
{% 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 {% if request.is_igb %}Show In Eve / {% endif %}EveGate Profile / EveSearch
{% if "reddit"|installed %} {% if app.user.redditaccount_set.all %}

Reddit Accounts

{% for acc in app.user.redditaccount_set.all %} {% endfor %}
AccountKarmaValidatedCreation DateMatches Criteria?
{{ acc.username }} {{ acc.link_karma }} / {{ acc.comment_karma }} {% if acc.validated %}Validated{%else %}NOT VALIDATED{% endif %} {{ acc.date_created }} {% if acc.is_valid %}Yes{% else %}No{% endif %}

Recent Reddit Posts

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