diff --git a/settings.py b/settings.py
index 635dd02..5f9f426 100644
--- a/settings.py
+++ b/settings.py
@@ -73,6 +73,7 @@ INSTALLED_APPS = (
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
+ 'django.contrib.humanize',
'django_evolution',
'registration',
'eve_proxy',
diff --git a/templates/hr/applications/view.html b/templates/hr/applications/view.html
index 3b4a3c2..bcfaf36 100644
--- a/templates/hr/applications/view.html
+++ b/templates/hr/applications/view.html
@@ -1,5 +1,7 @@
{% extends "base.html" %}
+{% load humanize %}
+
{% block title %}View Application{% endblock %}
{% block content %}
@@ -34,7 +36,7 @@
{% for acc in eveacc %}
{% for char in acc.characters.all %}
-- {{ char.name }} - {{ char.corporation }} / {{ char.corporation.alliance }} - {{ char.balance }} ISK, {{ char.total_sp }} SP
+- {{ char.name }} - {{ char.corporation }} / {{ char.corporation.alliance }} - {{ char.balance|intcomma }} ISK, {{ char.total_sp|intcomma }} SP
{% endfor %}
{% endfor %}
@@ -42,7 +44,7 @@
Reddit Accounts
{% for acc in redditacc %}
-- {{ acc.username }}{% if acc.validated %} - Validated{ %else %} - NOT VALIDATED{% endif %} - {{ acc.date_created }}
+- {{ acc.username }}{% if acc.validated %} - Validated{%else %} - NOT VALIDATED{% endif %} - {{ acc.date_created }}
{% endfor %}
diff --git a/templates/sso/character.html b/templates/sso/character.html
index 7c37f30..011d4a2 100644
--- a/templates/sso/character.html
+++ b/templates/sso/character.html
@@ -1,5 +1,7 @@
{% extends "base.html" %}
+{% load humanize %}
+
{% block content %}
{{ character.name }}
@@ -10,7 +12,7 @@
Race: {{ character.race_description }}
Gender: {{ character.gender_description }}
Corporation: {{ character.corporation.name }}
-Total SP: {{ character.total_sp }}
+Total SP: {{ character.total_sp|intcomma }}