{% 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" %}
{% trans "Type" %} |
{% for month in months %}
{{ month }} |
{% endfor %}
{% for k, v in types_new.items %}
{{ k }} |
{% for count in v %}
{{ count }} |
{% endfor %}
{% endfor %}
{% trans "Total" %} |
{% for total in totals_new %}
{{ total }} |
{% endfor %}
{% trans "Renewed Members" %}
{% trans "Type" %} |
{% for month in months %}
{{ month }} |
{% endfor %}
{% for k, v in types_renew.items %}
{{ k }} |
{% for count in v %}
{{ count }} |
{% endfor %}
{% endfor %}
{% trans "Total" %} |
{% for total in totals_renew %}
{{ total }} |
{% endfor %}
{% trans "Expired Members" %}
{% trans "Type" %} |
{% for month in months %}
{{ month }} |
{% endfor %}
{% for k, v in types_expired.items %}
{{ k }} |
{% for count in v %}
{{ count }} |
{% endfor %}
{% endfor %}
{% trans "Total" %} |
{% for total in totals_expired %}
{{ total }} |
{% endfor %}
{% endblock content %}