{% endif %}
{% if not rating.hospital_rank and not rating.department_rank %}
-
{% endif %}
{% empty %}
{% trans "No ratings found" %}
{% trans "Try adjusting your filters" %}
{% endfor %}
{% 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 %}