{% extends "reports/base.html" %} {% load reports_tags %} {% load i18n %} {% block content %}

{% trans "New and Renewing Members Over Time" %}

{% for stat in stats|slice:":5" reversed %} {% endfor %}
Since Date New Renewal Totals
{{ stat.time }} {{ stat.start_dt }} {{ stat.new }} {{ stat.renewing }} {{ stat.new|add:stat.renewing }}
{% endblock content %}