{% 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 %}
{% 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 %}