{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Transaction Stats History" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans "Monthly trends for buy and sell orders" %}
| {% trans "User" %} | {% trans "Buy Orders" %} | {% trans "Sell Orders" %} | {% trans "Buy Volume" %} | {% trans "Sell Volume" %} | {% trans "Net Flow" %} |
|---|---|---|---|---|---|
| {{ user_stat.username }} | {{ user_stat.buy_orders|intcomma }} | {{ user_stat.sell_orders|intcomma }} | {{ user_stat.buy_volume|floatformat:0|intcomma }} ISK | {{ user_stat.sell_volume|floatformat:0|intcomma }} ISK | {{ user_stat.net_flow|floatformat:0|intcomma }} ISK |