{% extends "transaction/transaction_list.html" %}
{% load i18n main_extras static category %}
{% block link %}
{{ block.super }}
{% css "main/css/plot.css" %}
{% endblock %}
{% block name %}{{ year|date:"Y" }}{% endblock %}
{% block h2 %}{{ year|date:"Y" }}{% endblock %}
{% block table %}
{% if history %}
{% translate "History" %}
{% include "history/plot.html" %}
{% endif %}
{% if not category %}
{% translate "Categories" %}
{% category_plot transactions year=year %}
{% endif %}
{% translate "Transactions" %}
{{ block.super }}
{% endblock %}