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