{% extends "base.html" %}
{% load humanize %}
{% load if_extra %}
{% load installed %}
{% block title %}View Application{% endblock %}
{% block content %}
Application Details
- Applying Auth User: {{ app.user }}
- Applying Character: {{ app.character }}
- Application Status: {{ app.get_status_display }}
- Blacklist Status: {% if app.blacklisted %}BLACKLISTED{% else %}OK{% endif %}
{% 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
| Event Type | User | Date | Event Details |
{% for a in audit %}
| {{ a.get_event_display }} | {{ a.user }} | {{ a.date }} | {{ a.text }} |
{% endfor %}
{% endif %}
{% if app.blacklisted %}
Blacklist Triggers
| Blacklist Type | Blacklisted Value | Reason | Source |
{% for a in app.blacklist_values %}
| {{ a.get_type_display }} | {{ a.value }} | {{ a.reason }} | {{ a.source }} |
{% endfor %}
{% endif %}
{% if app.recommendation_set.all %}
Recommendations
| User | Character | Corporation | Valid Recommendation |
{% for rec in app.recommendation_set.all %}
| {{ rec.user }} |
{{ rec.user_character }} |
{{ rec.user_character.corporation }} |
{% if rec.is_valid %}Yes{% else %}No{% endif %} |
{% endfor %}
{% endif %}
{% if hrstaff %}
EVE Characters
{% if "reddit"|installed %}
{% if app.user.redditaccount_set.all %}
Reddit Accounts
| Account | Karma | Validated | Creation Date | Matches Criteria? |
{% for acc in app.user.redditaccount_set.all %}
| {{ 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 %} |
{% endfor %}
Recent Reddit Posts
Load recent Reddit posts
{% endif %}
{% endif %}
{% endif %}
{% endblock %}