{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Material Exchange" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans "Corp supply hub for buying and selling materials" %}
{% trans "Items in Stock" %}
{% trans "Stock Value" %}
{% trans "Pending Sell Orders" %}
{% trans "Pending Buy Orders" %}
{% trans "Track your sell and buy orders with status updates." %}
{% trans "View Orders" %}{% trans "Sell your materials to the corp at fair prices based on Jita Buy." %}
{% trans "Start Selling" %}{% trans "Purchase materials from the corp stock without going to Jita." %}
{% trans "Browse Stock" %}{% trans "View all completed transactions and monthly reports." %}
{% trans "View History" %}| {% trans "Items" %} | {% trans "Total Quantity" %} | {% trans "Total" %} | {% trans "Status" %} |
|---|---|---|---|
| {% for item in order.items.all %} {{ item.type_name }} ({{ item.quantity|intcomma }}){% if not forloop.last %}, {% endif %} {% endfor %} | {{ order.total_quantity|intcomma }} | {{ order.total_price|floatformat:0|intcomma }} ISK |
{% if order.status == 'draft' %}
{% elif order.status == 'awaiting_validation' %}
{% elif order.status == 'validated' %}
{% elif order.status == 'accepted' %}
{% elif order.status == 'completed' %}
{% elif order.status == 'rejected' %}
{% elif order.status == 'cancelled' %}
{% endif %}
{{ order.get_status_display }}
|
{% trans "No sell orders yet." %}
{% endif %}| {% trans "Items" %} | {% trans "Total Quantity" %} | {% trans "Total" %} | {% trans "Status" %} |
|---|---|---|---|
| {% for item in order.items.all %} {{ item.type_name }} ({{ item.quantity|intcomma }}){% if not forloop.last %}, {% endif %} {% endfor %} | {{ order.total_quantity|intcomma }} | {{ order.total_price|floatformat:0|intcomma }} ISK |
{% if order.status == 'draft' %}
{% elif order.status == 'awaiting_validation' %}
{% elif order.status == 'validated' %}
{% elif order.status == 'accepted' %}
{% elif order.status == 'completed' %}
{% elif order.status == 'rejected' %}
{% elif order.status == 'cancelled' %}
{% endif %}
{{ order.get_status_display }}
|
{% trans "No buy orders yet." %}
{% endif %}| {% trans "Type" %} | {% trans "User" %} | {% trans "Material" %} | {% trans "Quantity" %} | {% trans "Value" %} | {% trans "Date" %} |
|---|---|---|---|---|---|
| {% if tx.transaction_type == 'sell' %} {% trans "Sell" %} {% else %} {% trans "Buy" %} {% endif %} | {{ tx.user.username }} | {{ tx.type_name }} | {{ tx.quantity|intcomma }} | {{ tx.total_price|floatformat:0|intcomma }} ISK | {{ tx.completed_at|date:"Y-m-d H:i" }} |