{% extends 'extends/layout.html' %} {% load static %} {% load humanize %} {% block content %} {% block scripts %} {% endblock %}
{% if date_type == 'single' and single_date %} Showing data for {{ single_date|date:"l, F d, Y" }} {% elif date_type == 'range' and start_date and end_date %} Showing data from {{ start_date }} to {{ end_date }} {% else %} Today: {{ today|date:"l, F d, Y" }} {% endif %}
{% if single_date or start_date or end_date %} Reset Filters {% endif %}
{% comment %} Export {% endcomment %}
{% if show_business_filters %}
{% endif %}
{% for transaction in today_savings %} {% empty %} {% endfor %}
# Account No. Amount
{{ forloop.counter }}. {{ transaction.account_number }} {{ transaction.amount|intcomma }}
No Savings
{% for share in today_shares %} {% empty %} {% endfor %}
# Name Shares
{{ forloop.counter }}. {{ share.name }} {{ share.shares }}
No Shares bought
{% if new_members %}
{% for member in new_members %} {% empty %} {% endfor %}
# Name Gender Contact Shares Bought Amount Saved
{{ forloop.counter }} {{ member.biodata.name|default:member.name }} {{ member.biodata.gender }} {{ member.biodata.contact }} {{ member.shares_bought }} {{ member.amount_saved }}
No New Members
{% else %}

No members joined.

{% endif %}
{% endblock %}