{% extends "base.html" %} {% block title %}Manage Contributions - National Medlab Cooperative{% endblock %} {% block content %}
| User | Amount | Payment Method | Status | Date | Actions |
|---|---|---|---|---|---|
|
{{ contribution.user.full_name }}
{{ contribution.user.registration_number }} |
₦{{ "%.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') }} | {% if contribution.status == 'pending' %} {% else %} {% if contribution.status == 'approved' %} Approved {% else %} Rejected {% endif %} {% endif %} |
No contributions have been made yet.