{% 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 "Total Buy Volume" %} {{ total_buy_volume|floatformat:0|intcomma }} ISK
{% trans "Total Sell Volume" %} {{ total_sell_volume|floatformat:0|intcomma }} ISK
{% trans "Orders Tracked" %} {{ total_transactions|intcomma }} {{ months_count|intcomma }} {% trans "months" %}
{% trans "Reset" %}
{% if period_start %} {% blocktrans with start=period_start|date:"Y-m-d" %}Data shown since {{ start }}.{% endblocktrans %} {% else %} {% trans "Data shown for all available history." %} {% endif %}
{% if chart_labels %}
{% trans "Monthly Volume (ISK)" %}
{% trans "Monthly Orders" %}
{% trans "Top Users (All Time)" %}
{% trans "Sorted by total traded volume" %}
{% if top_user_stats %}
{% for user_stat in top_user_stats %} {% endfor %}
{% 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
{% else %}
{% trans "No user transaction stats available yet." %}
{% endif %}
{% else %}
{% trans "No transaction history available yet." %}
{% endif %}
{{ chart_labels|json_script:"meChartLabels" }} {{ buy_volumes|json_script:"meBuyVolumes" }} {{ sell_volumes|json_script:"meSellVolumes" }} {{ transaction_counts|json_script:"meTransactionCounts" }} {% endblock content %} {% block extra_javascript %} {{ block.super }} {% endblock extra_javascript %}