{% extends "base.html" %} {% block title %}Request Loan - {{ current_user.full_name }}{% endblock %} {% block content %}

Submit Loan Request

Request a loan from your group's fund

Common purposes: Business investment, Education, Medical expenses, Home improvement, Emergency

My Loan Requests

History of your loan requests and status

{% if loan_requests %}
{% for loan in loan_requests %}
{% if loan.status == 'pending' %} Pending {% elif loan.status == 'approved' %} Approved {% elif loan.status == 'rejected' %} Rejected {% elif loan.status == 'active' %} Active {% elif loan.status == 'completed' %} Completed {% endif %}
৳{{ "%.2f"|format(loan.amount_requested) }}
{{ loan.repayment_months }} months repayment
৳{{ "%.2f"|format(loan.monthly_payment) }}/month
Purpose: {{ loan.purpose[:100] }}{% if loan.purpose|length > 100 %}...{% endif %}
{% if loan.admin_notes %}
Admin Notes: {{ loan.admin_notes }}
{% endif %}
{{ loan.created_at.strftime('%b %d, %Y') }}
{% if loan.approved_at %}
Approved: {{ loan.approved_at.strftime('%b %d, %Y') }}
{% endif %}
{% endfor %}
{% else %}

No loan requests yet

Submit your first loan request using the form

{% endif %}
{% endblock %}