{% extends "base.html" %} {% load static %} {% block title %}Telemedicine Sessions - {{ block.super }}{% endblock %} {% block content %}

Telemedicine Sessions

{% for session in sessions %} {% empty %} {% endfor %}
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 %}
{% if session.status == 'SCHEDULED' or session.status == 'WAITING' %} {% endif %} {% if session.meeting_url %} {% endif %} {% if session.status not in 'COMPLETED,CANCELLED' %} {% endif %}
No telemedicine sessions found

No sessions match your current filters.

{% if is_paginated %} {% endif %}
{% endblock %}