{% 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_entity_extensions' in INSTALLED_APPS %}
{{character.name}}
{% else %}
{{character.name}}
{% endif %}
|
{% if character.token.get_primary_character %}
{% if 'django_eveonline_entity_extensions' in INSTALLED_APPS %}
{{character.token.get_primary_character.name}}
{% else %}
{{character.name}}
{% endif %}
{% endif %}
|
{{character.corporation}}
|
{% if character.corporation.alliance %}
{{character.corporation.alliance}}
{% else %}
None
{% endif %}
|