{% extends 'base.html' %} {% load crispy_forms_tags %} {% block content %}

Transactions Report

{% csrf_token %} Min $ Max $ Starting Processed Date Ending Processed Date Download csv  
{% for transaction in transactions %} {% endfor %}
TIDTransaction ID SIDStudent ID Name Date Processed Type Amount Notes Action Delete
{{ transaction.id }} {{ transaction.student }} {{transaction.student.first_name}} {{transaction.student.middle_name}} {{transaction.student.last_name}} {{ transaction.transactiondate|date:'Y-m-d' }} {{ transaction.transactionprocesseddate|date:'Y-m-d' }} {{ transaction.transactiontype }} {{ transaction.transactionnotes }}

Collections Report

{% csrf_token %} Minimum due $ (leave blank for no minimum)
Max $ (leave blank for no maximum)
Next payment due by
Show only students who ernolled after this date:


TOTAL RECEIVABLES: {{ totalowed | floatformat:2 }}

{% for student in collections %} {% endfor %}
IDNameDue DateAmount DueBalance
{{ student.id }} {{ student.first_name }} {{ student.middle_name }} {{ student.last_name }} {{ student.next_due_date|date:'Y-m-d' }} {{ student.payment_amount_due | floatformat:2}} {{ student.balance | floatformat:2 }}

Prepays Report

{% csrf_token %} First Date
Date As Of
Download csv  


{% if prepaytotalowed %} Starting {{ prepayfirst }}, as of {{ prepayasof }}:

Total Prepaid: ${{ prepaytotalprepaid | floatformat:2 }}


Total Prorata Owed: ${{ prepaytotalprorataowed | floatformat:2 }}
Total Owed: ${{ prepaytotalowed | floatformat:2 }}
Total Paid: ${{ prepaytotalpaid | floatformat:2 }}
{% for item in prepays %} {% endfor %}
Cohort current loalength discounts first_name grad graddate graduated id inactive last_name length name owed paid prepaid prorataowed start start_date studentname
{{item.cohort}} {{item.current}} {{item.loalength}} {{item.discounts}} {{item.first_name}} {{item.grad}} {{item.graddate}} {{item.graduated}} {{item.id}} {{item.inactive}} {{item.last_name}} {{item.length}} {{item.name}} {{item.owed | floatformat:2 }} {{item.paid | floatformat:2 }} {{item.prepaid | floatformat:2 }} {{item.prorataowed | floatformat:2 }} {{item.start}} {{item.start_date}} {{item.studentname}}
{% endif %}
{% endblock %}