{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Review Doctor Ratings" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Review and confirm doctor ratings before importing" %}
{% trans "Total Records" %}
{{ total_count }}
{% trans "Matched Doctors" %}
{{ matched_count }}
{{ matched_count|default:0|add:0 }} / {{ total_count }}
{% trans "Unmatched" %}
{{ unmatched_count }}
{% trans "Will need manual matching" %}
{% trans "Hospital" %}
{{ hospital.name }}
{% trans "Some doctors could not be automatically matched to staff records. You can:" %}
| # | {% trans "Doctor" %} | {% trans "Patient" %} | {% trans "Rating" %} | {% trans "Date" %} | {% trans "Department" %} | {% trans "Match Status" %} |
|---|---|---|---|---|---|---|
| {{ rating.row_num }} |
{{ rating.doctor_name|default:rating.doctor_name_raw }} {% if rating.doctor_id %}ID: {{ rating.doctor_id }} {% endif %} |
{{ rating.patient_name }}
{{ rating.uhid }}
|
{% if rating.rating >= 4 %}
{{ rating.rating }}
{% elif rating.rating >= 3 %}
{{ rating.rating }}
{% else %}
{{ rating.rating }}
{% endif %}
|
{% if rating.rating_date %}
{{ rating.rating_date }}
{% else %}
-
{% endif %}
|
{{ rating.department|default:"-" }}
|
{% if rating.staff_matched %} {% trans "Matched" %} {% else %} {% trans "Unmatched" %} {% endif %} |
|
{% trans "No ratings to display" %} |
||||||