diff --git a/app/eve_api/templates/eve_api/character.html b/app/eve_api/templates/eve_api/character.html index 44170ae..f8f5955 100644 --- a/app/eve_api/templates/eve_api/character.html +++ b/app/eve_api/templates/eve_api/character.html @@ -63,7 +63,11 @@ {% for group in skill_group %} {{ group.grouper }} {% for skill in group.list %} + {% if skill.in_training %} + {{ skill.skill.name }} - Training to Level {{ skill.in_training }}Level {{ skill.level }}{{ skill.skillpoints|intcomma }} SP + {% else %} {{ skill.skill.name }} Level {{ skill.level }}{{ skill.skillpoints|intcomma }} SP + {% endif %} {% endfor %} {% endfor %} Total SP{{ character.total_sp|intcomma }} SP diff --git a/app/hr/templates/hr/blacklist/blacklist.html b/app/hr/templates/hr/blacklist/blacklist.html index b4fdd92..840765a 100644 --- a/app/hr/templates/hr/blacklist/blacklist.html +++ b/app/hr/templates/hr/blacklist/blacklist.html @@ -3,19 +3,6 @@ {% block title %}Blacklist User{% endblock %} {% block content %} - -

This form will blacklist the listed user below. It'll process all entries for the user and blacklist the following:

-
+ {{ form.as_table }}
{{ u.username }}
{% csrf_token %} - +
{% endblock %} diff --git a/app/templates/base.html b/app/templates/base.html index dd102de..424207a 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -10,7 +10,7 @@