{% load i18n %}
| {% translate "Portrait" %} | {% translate "Name" %} | {% translate "Type" %} | {% translate "Open Invoices" %} | {% translate "Actions" %} |
|---|---|---|---|---|
| {{ owner.portrait|safe }} | {{ owner.name }} {% if not owner.active %} {% translate "inactive" %} {% endif %} | {{ owner.type_display }} | {% if owner.open_invoices %} {{ owner.open_invoices }} {% translate "Open Invoices" %} {% else %} {% translate "No Open Invoices" %} {% endif %} |
{% 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 %}
|