{% extends 'aapayout/base.html' %} {% load i18n %} {% load humanize %} {% load aapayout_filters %} {% block details %}

{% translate "Payouts for" %} {{ loot_pool.name }}

{% translate "Payout" %}: {{ loot_pool.fleet.name }} | {% translate "Loot Pool" %}: {{ loot_pool.name }}

{% if can_mark_paid and pending_count > 0 %} {% translate "Express Mode" %} {% endif %} {% translate "Back to Loot Pool" %}
{% translate "Total Payouts" %}

{{ payouts.count }}

{% translate "Pending" %}

{{ pending_count }}

{{ pending_amount|isk_format_full }}

{% translate "Paid" %}

{{ paid_count }}

{{ paid_amount|isk_format_full }}

{% translate "Total Amount" %}

{{ total_amount|isk_format_full }}

{% translate "Payout List" %}
{% if payouts %}
{% for payout in payouts %} {% endfor %}
{% translate "Recipient" %} {% translate "Amount" %} {% translate "Verification Status" %} {% translate "Verified At" %} {% translate "Actions" %}
{{ payout.recipient.name }} {% if payout.is_scout_payout %} {% translate "Scout" %} {% endif %} {% if payout.recipient.character_id == request.user.profile.main_character.character_id %} {% translate "You" %} {% endif %} {{ payout.amount|isk_format_full }} {% if payout.is_scout_payout %}
{% translate "(includes scout bonus)" %} {% endif %}
{% if payout.verified %} {% translate "Verified" %} {% else %} {% translate "Pending" %} {% endif %} {% if payout.verified_at %} {{ payout.verified_at|date:"Y-m-d H:i" }} {% else %} — {% endif %}
{% translate "Total" %} {{ total_amount|isk_format_full }}
{% else %}

{% translate "No payouts found for this loot pool" %}

{% endif %}
{% if loot_pool.notes %}
{% translate "Notes" %}

{{ loot_pool.notes|linebreaks }}

{% endif %}
{% endblock %}