{% extends "base.html" %}
{% load humanize %}
{% load if_extra %}
{% load installed %}
{% block title %}View Application{% endblock %}
{% block content %}
Application Details
{% ifnotequal app.status 5 %}
Actions
{% endifnotequal %}
{% if audit %}
Event Log
| Event Type | User | Date | Event Details |
{% for a in audit %}
| {{ a.get_event_display }} | {{ a.user }} | {{ a.date|date:"Y/m/d H:i:s" }} | {{ a.text|linebreaks }} |
{% 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
{% 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 %}