{% extends "reports/base.html" %} {% load i18n %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
Back to Membership Reports

{% trans "Members YTD by type" %}

{% 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 %}