diff --git a/app/eve_api/templates/eve_api/character.html b/app/eve_api/templates/eve_api/character.html index ba92954..2a8cfdb 100644 --- a/app/eve_api/templates/eve_api/character.html +++ b/app/eve_api/templates/eve_api/character.html @@ -79,6 +79,20 @@ Total SP{{ character.total_sp|intcomma }} SP + + {% if character.employmenthistory.count %} +
+

Employment History

+ + + + {% for hist in character.employmenthistory.all %} + + {% endfor %} +
CorporationJoin DateLeave Date
{{ hist.corporation.name }}{{ hist.start_date }}{% if hist.end_date %}{{ hist.end_date }}{% endif %}
+
+ {% endif %} +