{% extends "base.html" %} {% block title %}User Details - {{ user.full_name }} - National Medlab Cooperative{% endblock %} {% block content %}
| Registration Number: | {{ user.registration_number }} |
| Full Name: | {{ user.full_name }} |
| Email: | {{ user.email }} |
| Phone: | {{ user.phone }} |
| Role: | {{ user.role }} |
| Verification Status: | {{ 'Verified' if user.is_verified else 'Not Verified' }} |
| Member Since: | {{ user.created_at.strftime('%d %B %Y') }} |
| User ID: | {{ user.id }} |
| Amount | Payment Method | Status | Date |
|---|---|---|---|
| ₦{{ "%.2f"|format(contribution.amount) }} | {{ contribution.payment_method.title() if contribution.payment_method else 'Manual' }} | {{ contribution.status.title() }} | {{ contribution.created_at.strftime('%d/%m/%Y %H:%M') }} |
No contributions found.
{% endif %}| Amount | Interest Rate | Total Payable | Duration | Status | Applied |
|---|---|---|---|---|---|
| ₦{{ "%.2f"|format(loan.amount) }} | {{ loan.interest_rate }}% | ₦{{ "%.2f"|format(loan.total_payable) }} | {{ loan.duration_months }} months | {{ loan.status.title() }} | {{ loan.created_at.strftime('%d/%m/%Y') }} |
No loan applications found.
{% endif %}| Type | Amount | Status | Description | Date |
|---|---|---|---|---|
| {{ transaction.type.replace('_', ' ').title() }} | ₦{{ "%.2f"|format(transaction.amount) }} | {{ transaction.status.title() }} | {{ transaction.description or 'N/A' }} | {{ transaction.created_at.strftime('%d/%m/%Y %H:%M') }} |
No transactions found.
{% endif %}