{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Patient Journeys - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Patient Journeys

Monitor patient journey instances and stage completion

{% trans "Total Journeys" %}

{{ stats.total }}

{% trans "Active" %}

{{ stats.active }}

{% trans "Completed" %}

{{ stats.completed }}

Filters
Clear
{% for journey in journeys %} {% empty %} {% endfor %}
{% trans "Encounter ID" %} {% trans "Patient" %} {% trans "Journey Type" %} {% trans "Hospital" %} {% trans "Progress" %} {% trans "Status" %} {% trans "Started" %} {% trans "Actions" %}
{{ journey.encounter_id }} {{ journey.patient.get_full_name }}
MRN: {{ journey.patient.mrn }}
{{ journey.journey_template.get_journey_type_display }} {{ journey.hospital.name_en|truncatewords:3 }} {% with completion=journey.get_completion_percentage %}
{{ completion }}%
{% endwith %}
{{ journey.get_status_display }} {{ journey.started_at|date:"M d, Y H:i" }}

No journeys found

{% if page_obj.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}