{% extends "_layout.html" %}
{% set active_page = 'statistics' %}
{% import '_account_macros.html' as account_macros %}
{% block javascript %}
{% endblock %}
{% block content %}
Statistics
{% set statistics = api.statistics() %}
Postings per Account
Type |
# Entries |
{% for account_name, num in statistics.postings_by_account|dictsort(false, 'value')|reverse %}
{{ account_name }} |
{{ num }} |
{% endfor %}
Total |
{{ statistics.postings_by_account_total }} |
Directive Type
Type |
# Entries |
{% for type, num in statistics.entries_by_type|dictsort(false, 'value')|reverse %}
{{ type }} |
{{ num }} |
{% endfor %}
Total |
{{ statistics.entries_by_type_total }} |
{% endblock %}