{% extends "base.html" %} {% load humanize %} {% block title %} EVE Online - Characters {% endblock %}
| Verified | Character | Primary Character | Corporation | Alliance |
|---|---|---|---|---|
| {% if character.token %} {% else %} {% endif %} |
{% if 'django_eveonline_connector' in INSTALLED_APPS %}
{{character.name}}
{% else %}
{{character.name}}
{% endif %}
|
{% if character.token.user.primary_evecharacter %}
{% if 'django_eveonline_connector' in INSTALLED_APPS %}
{{character.token.user.primary_evecharacter.get_character.name}}
{% else %}
{{character.name}}
{% endif %}
{% endif %}
|
{{character.corporation}}
|
{% if character.corporation.alliance %}
{{character.corporation.alliance}}
{% else %}
None
{% endif %}
|