{% extends "base.html" %} {% block title %}Dashboard - National Medlab Cooperative{% endblock %} {% block content %}
Registration Number: {{ current_user.registration_number }}
| Amount | Status | Date |
|---|---|---|
| ₦{{ "%.2f"|format(contribution.amount) }} | {{ contribution.status.title() }} | {{ contribution.created_at.strftime('%d/%m/%Y') }} |
No contributions yet.
{% endif %}| Amount | Status | Date |
|---|---|---|
| ₦{{ "%.2f"|format(loan.amount) }} | {{ loan.status.title() }} | {{ loan.created_at.strftime('%d/%m/%Y') }} |
No loan applications yet.
{% endif %}