{% 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 "Complete transaction log and financial reports" %}
| {% 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 |