diff --git a/templates/hr/applications/view.html b/templates/hr/applications/view.html
index ddb6a1d..683948a 100644
--- a/templates/hr/applications/view.html
+++ b/templates/hr/applications/view.html
@@ -74,20 +74,33 @@
{% if hrstaff %}
EVE Characters
+
+
+| Character | Corp / Alliance | ISK | SP | Links |
{% for acc in app.user.eveaccount_set.all %}
{% for char in acc.characters.all %}
-- {{ char.name }} - {{ char.corporation }} / {{ char.corporation.alliance }} - {{ char.balance|intcomma }} ISK, {{ char.total_sp|intcomma }} SP - EveGate Profile
+| {{ char.name }} |
+ {{ char.corporation }} / {{ char.corporation.alliance }} |
+ {{ char.balance|intcomma }} ISK |
+ {{ char.total_sp|intcomma }} SP |
+ / EveGate Profile |
+
{% endfor %}
{% endfor %}
{% if app.user.redditaccount_set.all %}
Reddit Accounts
-
+
+| Account | Karma | Validated | Creation Date |
{% for acc in app.user.redditaccount_set.all %}
-- {{ acc.username }}{% if acc.validated %} - Validated{%else %} - NOT VALIDATED{% endif %} - {{ acc.date_created }}
+| {{ acc.username }} |
+ {{ acc.link_karma }} / {{ acc.comment_karma }} |
+ {% if acc.validated %}Validated{%else %}NOT VALIDATED{% endif %} |
+ {{ acc.date_created }} |
+
{% endfor %}
-
+
Reddit Posts