{% extends "indy_hub/base.html" %} {% load i18n humanize %} {% block page_title %}{% trans "Delete Order" %}{% endblock page_title %} {% block content %}

{% trans "Confirm Delete" %}

{% if order_type == 'sell' %} {% trans "Are you sure you want to delete this sell order?" %} {% else %} {% trans "Are you sure you want to delete this buy order?" %} {% endif %}

{% trans "Order Reference:" %} {{ order.order_reference }}
{% if order_type == 'sell' %} {% trans "Items to sell:" %} {{ order.items.count }}
{% trans "Total:" %} {{ order.total_price|floatformat:0|intcomma }} ISK {% else %} {% trans "Items to buy:" %} {{ order.items.count }}
{% trans "Total:" %} {{ order.total_price|floatformat:0|intcomma }} ISK {% endif %}
{% trans "This action cannot be undone. All associated items will be deleted." %}
{% trans "Cancel" %}
{% csrf_token %}
{% endblock content %}