{% load i18n %} {% load static %} {% load humanize %} {% load evelinks %}
{% translate 'Overview' %}
{% translate "(no data yet)" as no_data %}
{% translate 'Character:' %}
{% include 'memberaudit/partials/character_name.html' %}
{% translate 'Corporation:' %}
{{ auth_character.corporation_name }}
{% translate 'Alliance:' %}
{% if auth_character.alliance_name %} {{ auth_character.alliance_name }} {% else %} - {% endif %}
{% translate 'Faction:' %}
{% if character_details %}
{{ character_details.faction|default:"-" }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Race:' %}
{% if character_details %}
{{ character_details.eve_bloodline.eve_race }} / {{ character_details.eve_bloodline }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Main:' %}
{{ main|default:"-" }}
{% translate 'Born:' %}
{% if character_details %}
{{ character_details.birthday|naturaltime }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Skillpoints:' %}
{% if character.skillpoints %}
{{ character.skillpoints.total|intword }} (allocated)
{{ character.skillpoints.unallocated|intword|default:"-" }} (unallocated)
{% else %}
{{no_data}}
{% endif %}
{% translate 'Sec. Status:' %}
{% if character_details.security_status %}
{{ character_details.security_status|floatformat:1 }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Assets:' %}
{% if character_assets_total %}
{{ character_assets_total|intword }} ISK (est.)
{% else %}
{{no_data}}
{% endif %}
{% translate 'Wallet:' %}
{% if character.wallet_balance %}
{{ character.wallet_balance.total|intword }} ISK
{% else %}
{{no_data}}
{% endif %}
{% translate 'Location:' %}
{% if character.location %}
{{ character.location.location.name_plus }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'System:' %}
{% include 'memberaudit/partials/solar_system.html' with character=character only %}
{% translate 'Ship:' %}
{% if character.ship %}
{{ character.ship.eve_type.name }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Home:' %}
{% if character.clone_info and character.clone_info.home_location %}
{{ character.clone_info.home_location.name_plus }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Last Login:' %}
{% if character.online_status.last_login %}
{{ character.online_status.last_login|naturaltime }}
{% else %}
{{no_data}}
{% endif %}