{% extends 'shop/base.html' %} {% load i18n %} {% block content %} {% include 'shop/_manage_header.html' %}

#{{ order.reference }}

{% include 'shop/_order_status_badge.html' %} {{ order.created_at|date:"Y-m-d H:i" }}
{% trans "Buyer" %}
{{ order.buyer.character_name }}
{% trans "Discord" %}: {% if order.buyer.discord_handle %}{% else %}{% endif %}

{% trans "Contact in-game (EVE-mail / contract) or via Discord if given." %}

{% trans "Additional information" %}
{% if order.additional_info %}{{ order.additional_info|linebreaksbr }}{% else %}{% trans "None" %}{% endif %}
{% csrf_token %}
{% for line in order.lines.all %} {% endfor %} {% if order.has_ask %}{% endif %}
{% trans "Item" %} {% trans "Qty" %} {% trans "Unit" %} {% trans "Total" %}
{{ line.eve_type.name }}{% if line.label %} ยท {{ line.label }}{% endif %} {{ line.quantity }} {{ line.unit_price_display }} {{ line.line_total_display }}
{% trans "Estimated total" %} {{ order.estimated_total_display }}
{% trans "Some items priced on request" %}
{% endblock %} {% block extra_javascript %} {% endblock %}