{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Summaries" %}{% endblock title %} {% block content %}

{% trans "Summaries" %}

{% if date_list %}
{% for date in date_list %} {% ifchanged date.year %} {% if not forloop.first %}
{% endif %} {{ date.year }} {% endifchanged %} {{ date|date:"F" }} {% endfor %}
{% else %}

{% trans "It looks like there haven't been any transactions, so there's nothing to show here." %}

{% endif %} {% endblock content %}