{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Transaction History" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans "Monthly Financial Summary" %}
{% trans "This Month" %}
{% trans "Materials Bought:" %} {{ month_stats.total_buy_volume|floatformat:0|intcomma }} ISK
{% trans "Materials Sold:" %} {{ month_stats.total_sell_volume|floatformat:0|intcomma }} ISK
{% trans "Total Transactions:" %} {{ month_stats.sell_count|add:month_stats.buy_count }}
{% trans "All Transactions" %}
{% if transactions %}
{% for tx in transactions %} {% endfor %}
{% trans "ID" %} {% trans "Date" %} {% trans "Type" %} {% trans "User" %} {% trans "Material" %} {% trans "Quantity" %} {% trans "Unit Price" %} {% trans "Total Amount" %}
#{{ tx.id }} {{ tx.completed_at|date:"Y-m-d H:i" }} {% if tx.transaction_type == 'sell' %} {% trans "Member Sold" %} {% else %} {% trans "Member Bought" %} {% endif %} {{ tx.user.username }} {{ tx.type_name }} {{ tx.quantity|intcomma }} {{ tx.unit_price|floatformat:2|intcomma }} ISK {{ tx.total_price|floatformat:0|intcomma }} ISK
{% if is_paginated %} {% endif %} {% else %}
{% trans "No transactions yet." %}
{% endif %}
{% endblock content %}