{% extends "base.html" %} {% load static %} {% block title %}Telemedicine Sessions - {{ block.super }}{% endblock %} {% block content %}
| Patient | Provider | Scheduled Time | Platform | Status | Actions |
|---|---|---|---|---|---|
|
{{ session.appointment.patient.get_full_name }} MRN: {{ session.appointment.patient.mrn }} |
{{ session.appointment.provider.get_full_name }} {{ session.appointment.provider.get_role_display }} |
{{ session.scheduled_start|date:"M d, Y H:i" }} | {{ session.get_platform_display }} | {% if session.status == 'SCHEDULED' %} Scheduled {% elif session.status == 'WAITING' %} Waiting {% elif session.status == 'IN_PROGRESS' %} In Progress {% elif session.status == 'COMPLETED' %} Completed {% elif session.status == 'CANCELLED' %} Cancelled {% endif %} | |
No telemedicine sessions foundNo sessions match your current filters. |
|||||