{% load i18n %} {% load static %} {% load humanize %} {% load evelinks %}
{% translate 'Overview' %}
{% translate "(no data yet)" as no_data %}
{% translate 'Character:' %}
{{ auth_character.character_name}} {% if auth_character.character_id == main_character_id %}   {% endif %} {% if character.is_shared %}   {% endif %}
{% 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 'Born:' %}
{% if character_details %}
{{ character_details.birthday|naturaltime }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Skillpoints:' %}
{% if character.skillpoints %}
{{ character.skillpoints.total|intword }}
{% 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 'Last Login:' %}
{% if character.online_status.last_login %}
{{ character.online_status.last_login|naturaltime }}
{% else %}
{{no_data}}
{% endif %}
{% translate 'Main:' %}
{{ main|default:"-" }}