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

{% trans "Physician Ratings" %}

{% trans "Monthly physician performance ratings" %}

{% trans "Filters" %}

{% trans "Clear" %}

{% trans "Ratings" %}

{% for rating in ratings %} {% empty %} {% endfor %}
{% trans "Period" %} {% trans "Physician" %} {% trans "Specialization" %} {% trans "Department" %} {% trans "Hospital" %} {% trans "Rating" %} {% trans "Surveys" %} {% trans "Sentiment" %} {% trans "Ranks" %} {% trans "Actions" %}
{{ rating.year }}-{{ rating.month|stringformat:"02d" }}

{{ rating.staff.get_full_name }}

{{ rating.staff.license_number }}

{{ rating.staff.specialization|default:"-" }} {% if rating.staff.department %} {{ rating.staff.department.name }} {% else %} - {% endif %}
{{ rating.staff.hospital.name }}
{{ rating.average_rating|floatformat:2 }}
{{ rating.total_surveys }}
{{ rating.positive_count }} {{ rating.neutral_count }} {{ rating.negative_count }}
{% if rating.hospital_rank %}
#{{ rating.hospital_rank }}
{% endif %} {% if rating.department_rank %}
#{{ rating.department_rank }}
{% endif %} {% if not rating.hospital_rank and not rating.department_rank %} - {% endif %}

{% trans "No ratings found" %}

{% trans "Try adjusting your filters" %}

{% if page_obj.has_other_pages %}
{% trans "Showing" %} {{ page_obj.start_index }}-{{ page_obj.end_index }} {% trans "of" %} {{ page_obj.paginator.count }} {% trans "entries" %}
{% if page_obj.has_previous %} {% else %} {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% elif num == 1 or num == page_obj.paginator.num_pages %} {{ num }} {% elif num == page_obj.number|add:'-3' or num == page_obj.number|add:'3' %} ... {% endif %} {% endfor %} {% if page_obj.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}