{% extends "reports/base.html" %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% blocktrans with year=year %}

Currently showing data for {{ year }}.

{% endblocktrans %}

{% trans "New Members" %}

{% for month in months %} {% endfor %} {% for k, v in types_new.items %} {% for count in v %} {% endfor %} {% endfor %} {% for total in totals_new %} {% endfor %}
{% trans "Type" %}{{ month }}
{{ k }}{{ count }}
{% trans "Total" %}{{ total }}

{% trans "Renewed Members" %}

{% for month in months %} {% endfor %} {% for k, v in types_renew.items %} {% for count in v %} {% endfor %} {% endfor %} {% for total in totals_renew %} {% endfor %}
{% trans "Type" %}{{ month }}
{{ k }}{{ count }}
{% trans "Total" %}{{ total }}

{% trans "Expired Members" %}

{% for month in months %} {% endfor %} {% for k, v in types_expired.items %} {% for count in v %} {% endfor %} {% endfor %} {% for total in totals_expired %} {% endfor %}
{% trans "Type" %}{{ month }}
{{ k }}{{ count }}
{% trans "Total" %}{{ total }}

{% endblock content %}