{% 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 "Activity" %} | {% trans "Volume" %} | {% trans "Net Flow" %} |
|---|---|---|---|
|
{{ user_stat.username }}
{{ user_stat.total_orders|intcomma }} {% trans "orders tracked" %}
|
{% trans "Buy orders" %}
{{ user_stat.buy_orders|intcomma }}
{% trans "Sell orders" %}
{{ user_stat.sell_orders|intcomma }}
|
{% trans "Buy volume" %}
{{ user_stat.buy_volume|floatformat:0|intcomma }} ISK
{% trans "Sell volume" %}
{{ user_stat.sell_volume|floatformat:0|intcomma }} ISK
|
{{ user_stat.net_flow|floatformat:0|intcomma }} ISK
{% if user_stat.net_flow >= 0 %}
{% trans "Net buy volume" %}
{% else %}
{% trans "Net sell volume" %}
{% endif %}
|