{% load i18n %}
| {% translate "Portrait" %} | {% translate "Name" %} | {% translate "Type" %} | {% translate "Actions" %} |
|---|---|---|---|
| {{ owner.portrait|safe }} | {{ owner.name }} {% if not owner.active %} {% translate "Inactive" %} {% endif %} | {{ owner.type_display }} |
{% translate "Payments" %}
{% if owner.type == "corporation" %}
{% if perms.taxsystem.manage_own_corp or perms.taxsystem.manage_corps %}
{% translate "Manage" %}
{% endif %}
{% else %}
{% if perms.taxsystem.manage_own_alliance or perms.taxsystem.manage_alliances %}
{% translate "Manage" %}
{% endif %}
{% endif %}
|