{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Material Exchange History" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans "Completed, rejected and cancelled contracts" %}
| {% trans "Ref" %} | {% trans "Seller" %} | {% trans "Total" %} | {% trans "Status" %} | {% trans "Date" %} |
|---|---|---|---|---|
| {{ order.order_reference }} | {{ order.seller.username }} | {{ order.total_price|floatformat:0|intcomma }} ISK | {{ order.get_status_display }} | {{ order.created_at|date:"Y-m-d H:i" }} |
{% trans "No closed sell orders." %}
{% endif %}| {% trans "Ref" %} | {% trans "Buyer" %} | {% trans "Total" %} | {% trans "Status" %} | {% trans "Date" %} |
|---|---|---|---|---|
| {{ order.order_reference }} | {{ order.buyer.username }} | {{ order.total_price|floatformat:0|intcomma }} ISK | {{ order.get_status_display }} | {{ order.created_at|date:"Y-m-d H:i" }} |
{% trans "No closed buy orders." %}
{% endif %}