{% extends "base.html" %} {% block title %}Dashboard - National Medlab Cooperative{% endblock %} {% block content %}
Registration Number: {{ current_user.registration_number }}
{% if not current_user.is_approved %}Your account is awaiting admin approval. Please complete the registration fee payment and wait for approval.
| Date | Total | Savings | Shares | Status |
|---|---|---|---|---|
| {{ contribution.created_at.strftime('%d/%m/%Y') }} | ₦{{ "%.2f"|format(contribution.amount) }} | ₦{{ "%.2f"|format(contribution.savings_amount or 0) }} | ₦{{ "%.2f"|format(contribution.shares_amount or 0) }} | {{ contribution.status.title() }} |
No contributions yet.
{% endif %}| Type | Amount | Status | Balance |
|---|---|---|---|
| {{ loan.loan_type.title() }} | ₦{{ "%.2f"|format(loan.amount) }} | {{ loan.status.title() }} | ₦{{ "%.2f"|format(loan.total_payable - (loan.repayments|selectattr('status', 'equalto', 'completed')|map(attribute='amount')|sum or 0)) }} |
No loan applications yet.
{% endif %}No CDF applications yet.
{% endif %}| Name | Status | Bonus | Date | |
|---|---|---|---|---|
| {{ referral.referred_name or 'N/A' }} | {{ referral.referred_email }} | {{ referral.status.replace('_', ' ').title() }} | ₦{{ "%.2f"|format(referral.bonus_amount or 0) }} | {{ referral.created_at.strftime('%d/%m/%Y') }} |
No referrals yet.
{% endif %}