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

{{ loot_pool.name }}

{% translate "Payout" %}: {{ loot_pool.fleet.name }}

{% if can_edit %} {% translate "Edit Loot" %} {% endif %}
{% translate "Total Value" %}

{{ loot_pool.total_value|isk_format_full }}

{% translate "Based on" %} {{ loot_pool.get_pricing_method_display }} {% if loot_pool.valued_at %}

{% translate "Valued at" %}: {{ loot_pool.valued_at|date:"Y-m-d H:i" }}

{% endif %}
{% translate "Distribution" %}
{% translate "Corp Share" %} ({{ loot_pool.corp_share_percentage }}%):
{{ loot_pool.corp_share_amount|isk_format_full }}
{% translate "Participants" %}:
{{ loot_pool.participant_share_amount|isk_format_full }}
{% if can_edit %}
0% 50% 100%
{% translate "Adjust scout bonus - payouts will update automatically" %}
{% endif %}
{% translate "Loot Items" %} ({{ items.count }})
{% if loot_pool.janice_appraisal_code %} {% translate "View on Janice" %} {% endif %}
{% if items %}
{% for item in items %} {% endfor %}
{% translate "Item Name" %} {% translate "Quantity" %} {% translate "Unit Price" %} {% translate "Total Value" %}
{{ item.name }} {{ item.quantity|intcomma }} {{ item.unit_price|isk_format_full }} {{ item.total_value|isk_format_full }}
{% translate "Grand Total" %}: {{ loot_pool.total_value|isk_format_full }}
{% else %}

{% translate "No items in this loot pool yet" %}

{% endif %}
{% if loot_pool.payouts.count > 0 %}
{% translate "Payouts" %}
{% translate "Manage Payouts" %}

{% translate "Payouts have been generated for this loot pool." %} {% translate "View payout details" %}

{% endif %} {% if loot_pool.raw_loot_text %}
{{ loot_pool.raw_loot_text }}
{% endif %}
{% endblock %}