{% extends "main/base.html" %} {% load static %} {% load main_extras %} {% load i18n %} {% block link %} {{ block.super }} {{ echarts_history | json_script:"echarts-history" }} {% endblock %} {% block body %}

{% translate "Accounts" %}

{% for acc in accounts %} {{ acc.icon|remix }}{{ acc }} {% empty %} {% translate "No account" %} {% endfor %}

{% if transactions %}

{% translate "Transactions" %}

{% include "transaction/transaction_table.html" %} {% endif %} {% if categories %}

{% translate "Categories" %}

{% spaceless %}

{% for cat in categories %} {{ cat.icon|remix }}{{ cat }} {% empty %} {% translate "No category" %} {% endfor %}

{% endspaceless %} {% endif %} {% if statements %}

{% translate "Statements" %}

{% include "statement/statement_table.html" %} {% endif %} {% if history.data %}

{% translate "History" %}

{% include "history/plot.html" %} {% endif %}
{% endblock %}