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

{% translate "Edit Loot for" %} {{ fleet.name }}

{% translate "Update loot text, pricing method, or scout bonus. Loot will be re-appraised automatically." %}

{% translate "Loot Information" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.pricing_method }} {% if form.pricing_method.errors %}
{{ form.pricing_method.errors }}
{% endif %}
{{ form.scout_bonus_percentage }}
0% 50% 100%
{% if form.scout_bonus_percentage.errors %}
{{ form.scout_bonus_percentage.errors }}
{% endif %} {% if form.scout_bonus_percentage.help_text %} {{ form.scout_bonus_percentage.help_text }} {% endif %}
{{ form.raw_loot_text }} {% if form.raw_loot_text.errors %}
{{ form.raw_loot_text.errors }}
{% endif %} {% if form.raw_loot_text.help_text %} {{ form.raw_loot_text.help_text }} {% endif %}
{% translate "Cancel" %}
{% translate "Instructions" %}
{% translate "Editing Loot" %}
  • {% translate "Update the loot text to add or remove items" %}
  • {% translate "Adjust pricing method or scout bonus as needed" %}
  • {% translate "Click 'Save & Reappraise' to update" %}

{% translate "Pasting Loot from EVE" %}
  1. {% translate "Open your EVE inventory" %}
  2. {% translate "Select the items you want to value" %}
  3. {% translate "Press Ctrl+C (or Cmd+C on Mac)" %}
  4. {% translate "Paste into the loot text area" %}

{% translate "What Happens Next" %}
  • {% translate "If loot text changed: Items will be re-appraised via Janice API" %}
  • {% translate "If settings changed: Payouts will be recalculated" %}
  • {% translate "You'll be redirected to the fleet detail page" %}
{% translate "Current Status" %}
{% translate "Total Items" %}:
{{ loot_pool.items.count }}
{% translate "Total Value" %}:
{{ loot_pool.total_value|floatformat:2 }} ISK
{% translate "Status" %}:
{{ loot_pool.get_status_display }}
{% endblock %}