{% extends "reports/base.html" %} {% load reports_tags %} {% block content %}
{% for type in summary %} {% if type.active %} {% else %} {% endif %} {% if type.pending %} {% else %} {% endif %} {% if type.expired %} {% else %} {% endif %} {% if type.total %} {% else %} {% endif %} {% endfor %} {% if total.active %} {% else %} {% endif %} {% if total.pending %} {% else %} {% endif %} {% if total.expired %} {% else %} {% endif %} {% if total.total %} {% else %} {% endif %}
{% trans 'Membership Type' %} {% trans 'Active' %} {% trans 'Pending' %} {% trans 'Expired' %} {% trans 'Total' %}
{{ type.type.name }} {{ type.active }}{{ type.active }}{{ type.pending }}{{ type.pending }}{{ type.expired }}{{ type.expired }}{{ type.total }}{{ type.total }}
{% trans 'Total' %}{{ total.active }}{{ total.active }}{{ total.pending }}{{ total.pending }}{{ total.expired }}{{ total.expired }}{{ total.total }}{{ total.total }}

{% endblock content %}