{% extends 'base.html' %} {% block content %}
| # | Month | Total KMs | Total Amount | Status | Actions |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ '%02d'|format(r.month) }}/{{ r.year }} | {{ '%.2f'|format(r.total_kms or 0) }} | ₹ {{ '%.2f'|format(r.total_amount or 0) }} | {{ r.status.replace('_',' ').title() }} | View {% if r.status in ['pending_manager','rejected'] %} Edit {% else %} {% endif %} |
| No requests found. | |||||