{% extends "main/base.html" %} {% load static %} {% load main_extras %} {% load i18n %} {% block title %} {% translate "Transactions" %} {% if account %}– {{ account }}{% endif %} {% if category %}– {{ category }}{% endif %} {% if search %} – {% translate "Search" %} {% endif %} – Nummi {% endblock %} {% block link %} {{ block.super }} {% endblock %} {% block body %}

{% block h2 %} {% translate "Transactions" %} {% endblock %}

{% if account %}

{{ account.icon|remix }}{{ account }}

{% endif %} {% if category %}

{{ category.icon|remix }}{{ category }}

{% endif %} {% if search %}

{% translate "Search" %}

{% endif %} {% if transactions %} {% include "main/list/pagination.html" %} {% include "main/table/transaction.html" %} {% include "main/list/pagination.html" %} {% else %}

{% translate "No transactions to show" %}

{% endif %} {% endblock %}