{% extends "main/base.html" %} {% load static %} {% load main_extras %} {% load i18n %} {% block link %} {{ block.super }} {% css "main/css/table.css" %} {% css "main/css/plot.css" %} {% 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 %}

{% translate "History" %}

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