{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{{ physician.get_full_name }} - {% trans "Physicians" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if physician.specialization %}{{ physician.specialization }}{% endif %}
{% trans "License Number" %}
{{ physician.license_number }}
{% trans "Specialization" %}
{{ physician.specialization|default:"-" }}
{% trans "Hospital" %}
{{ physician.hospital.name }}
{% trans "Department" %}
{{ physician.department.name }}
{% trans "Email" %}
{{ physician.email }}
{% trans "Phone" %}
{{ physician.phone }}
{{ current_month_rating.average_rating|floatformat:2 }}
{% trans "Average Rating" %}
{{ current_month_rating.total_surveys }}
{% trans "Surveys" %}
#{{ current_month_rating.hospital_rank }}
{% trans "Rank" %}
{% else %}-
{% trans "No Rank" %}
{% endif %}{% trans "YTD Average Rating" %}
{% if ytd_average %}{{ ytd_average|floatformat:2 }}
{% else %}-
{% endif %}{% trans "YTD Total Surveys" %}
{{ ytd_surveys|default:0 }}
{% trans "Best Month" %}
{{ best_month.average_rating|floatformat:2 }}
{{ best_month.year }}-{{ best_month.month|stringformat:"02d" }}
{% trans "Lowest Month" %}
{{ worst_month.average_rating|floatformat:2 }}
{{ worst_month.year }}-{{ worst_month.month|stringformat:"02d" }}
| {% trans "Month" %} | {% trans "Rating" %} | {% trans "Surveys" %} | {% trans "Positive" %} | {% trans "Neutral" %} | {% trans "Negative" %} | {% trans "Rank" %} |
|---|---|---|---|---|---|---|
| {{ rating.year }}-{{ rating.month|stringformat:"02d" }} | {{ rating.average_rating|floatformat:2 }} | {{ rating.total_surveys }} | {% if rating.hospital_rank %} #{{ rating.hospital_rank }} {% else %} - {% endif %} |
{% trans "No rating history available" %}
{% trans "Ratings will appear here once the physician has received survey responses." %}