{# charity_report.html #} {% extends "base.html" %} {% comment %} template parameters: outstanding: float payments: List[CharityPaymentRecord] responses: List[ClinicianResponse] total_due: float total_paid: float {% endcomment %} {% block content %}
Total of payments due to charity: {{ total_due }}
Total of payments made: {{ total_paid }}
Outstanding due: {{ outstanding }}
Created at | Payee | Amount |
---|---|---|
{{ payment.created_at }} | {{ payment.payee }} | {{ payment.amount }} |
Created at | Clinician response ID | Contact request ID | Study ID | Amount due |
---|---|---|---|---|
{{ clinician_response.created_at }} | {{ clinician_response.id }} | {{ clinician_response.contact_request.id }} | {{ clinician_response.study.id }} | {{ clinician_response.charity_amount_due }} |