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

{% translate "Mark Payout as Paid" %}

{% translate "Payout Information" %}
{% translate "Recipient" %}:
{{ payout.recipient.name }}
{% translate "Amount" %}:
{{ payout.amount|isk_format_full }}
{% translate "Fleet" %}:
{{ payout.loot_pool.fleet.name }}
{% translate "Loot Pool" %}:
{{ payout.loot_pool.name }}
{% translate "Current Status" %}:
{{ payout.get_status_display }}
{% translate "Created" %}:
{{ payout.created_at|date:"Y-m-d H:i" }}
{% translate "Payment Details" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.payment_method }} {% if form.payment_method.errors %}
{{ form.payment_method.errors }}
{% endif %}
{{ form.transaction_reference }} {% if form.transaction_reference.errors %}
{{ form.transaction_reference.errors }}
{% endif %} {% if form.transaction_reference.help_text %} {{ form.transaction_reference.help_text }} {% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %}
{% translate "This will mark the payout as paid and record you as the payer. The payment timestamp will be automatically recorded." %}
{% translate "Cancel" %}
{% translate "Payment Methods" %}
{% translate "Available Methods" %}
  • {% translate "Manual" %}: {% translate "Direct ISK transfer in-game" %}
  • {% translate "Contract" %}: {% translate "EVE contract payment" %}
  • {% translate "Wallet Journal" %}: {% translate "Recorded in wallet journal" %}

{% translate "Best Practices" %}
  • {% translate "Always provide a transaction reference" %}
  • {% translate "Take a screenshot for records" %}
  • {% translate "Verify character name before sending ISK" %}
  • {% translate "Add notes if there are any issues" %}

{% translate "Quick Tips" %}

{% translate "For manual payments, copy the character name and amount carefully. Double-check before confirming the transfer in EVE." %}

{% translate "Important" %}

{% translate "This action cannot be easily undone. Make sure you have actually sent the ISK before marking this payout as paid." %}

{% translate "Your username and the current timestamp will be recorded as proof of payment." %}

{% endblock %}