{% extends 'base.html' %} {% block content %}

Application #{{ app.id }}

Name: {{ app.full_name }} | Type: {{ app.passport_type }} | Status: {{ app.status }}

Status Timeline

{% for s in status_flow %}
{{ s }}
{% endfor %}

Documents

Appointment

{% if appt %}

{{ appt.appt_date }} at {{ appt.appt_time }} — {{ appt.center }}

{% else %} Schedule Appointment {% endif %}

Payment

{% if pay %}

Paid ₹{{ pay.amount }} via {{ pay.method }} (Ref: {{ pay.reference }})

{% else %} Pay Fee {% endif %} {% endblock %}