{% trans "Buy Order Details" %}
{% trans "Order" %} #{{ order.id }}
{% trans "Order Reference" %}
{{ order.order_reference }}
{% trans "Your unique order identifier" %}
{% trans "Order Status" %}
{{ order.get_status_display }}
{% trans "How This Works" %}
{% trans "You create an Item Exchange contract to the buyer with the details below. The system auto-validates the contract once it matches." %}
- {% trans "Type:" %} {% trans "Item Exchange" %}
-
{% trans "Assign to:" %}
{{ order.buyer.username }}
({% trans "AA user" %} #{{ order.buyer.id }})
{% trans "Use one of the buyer's in-game characters linked to this account." %}
- {% trans "Location:" %} {{ config.structure_name }} (ID: {{ config.structure_id }})
- {% trans "Price:" %} {{ order.total_price|floatformat:2|intcomma }} ISK
- {% trans "Title/Description:" %} {{ order.order_reference }} ({% trans "REQUIRED!" %})
- {% trans "Duration:" %} {% trans "4 weeks" %}
{% trans "The corporation" %} {% trans "will create an" %} {% trans "Item Exchange contract" %} {% trans "with the items listed below." %}
{% trans "You will receive a notification when the contract is created. Review the items and accept the contract to complete the transaction." %}
{% trans "Items Wanted" %} ({{ items.count }})
| {% trans "Item" %} | {% trans "Quantity" %} | {% trans "Unit Price" %} | {% trans "Total" %} | {% if order.status != 'draft' and order.status != 'awaiting_validation' %}{% trans "Validated" %} | {% endif %}
|---|---|---|---|---|
|
{{ item.type_name }}
ID: {{ item.type_id }} |
{{ item.quantity|intcomma }} | {{ item.unit_price|floatformat:2|intcomma }} ISK | {{ item.total_price|floatformat:2|intcomma }} ISK | {% if order.status != 'draft' and order.status != 'awaiting_validation' %}{% if item.esi_contract_validated %} {% else %} {% endif %} | {% endif %}
| {% trans "TOTAL PURCHASE PRICE:" %} | {{ order.total_price|floatformat:2|intcomma }} ISK | {% if order.status != 'draft' and order.status != 'awaiting_validation' %}{% endif %} | ||
{% trans "Notes" %}
{{ order.notes }}