{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "My Orders" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{% trans "Sell Orders" %}

{{ total_sell }}

{% trans "Buy Orders" %}

{{ total_buy }}
{% if page_obj.object_list %}
{% trans "Type" %} {% trans "Items" %} {% trans "Value" %} {% trans "Progress" %} {% trans "Action" %}
{% for item in page_obj %}
{% if item.type == 'sell' %} {% trans "Sell" %} {% else %} {% trans "Buy" %} {% endif %} {{ item.status }}
{{ item.created_at|date:"Y-m-d H:i" }}
{{ item.items_count }}
{{ item.total_price|floatformat:2|intcomma }} ISK
{% for step in item.timeline_breadcrumb %} {% endfor %}
{% if item.type == 'sell' %} {% trans "View" %} {% else %} {% trans "View" %} {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %}
{% endif %} {% else %}

{% trans "No orders yet" %}

{% trans "Start by creating a sell or buy order" %}

{% endif %}
{% endblock content %}