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

{% trans "Appreciation Leaderboard" %}

{% trans "Top performers by appreciation received and sent" %}

{% trans "Filters" %}

{% trans "Reset" %}
{% if page_obj %} {% for item in page_obj %} {% endfor %}
{% trans "Rank" %} {% trans "Recipient" %} {% trans "Hospital" %} {% trans "Department" %} {% trans "Received" %} {% trans "Sent" %} {% trans "Hospital Rank" %}
{% if forloop.counter <= 3 %} {% if forloop.counter == 1 %}{% endif %} #{{ forloop.counter }} {% else %} #{{ forloop.counter }} {% endif %}
{{ item.get_recipient_name }}
{{ item.hospital.name }} {% if item.department %}{{ item.department.name }}{% else %}-{% endif %} {{ item.received_count }} {{ item.sent_count }} {% if item.hospital_rank %} {% if item.hospital_rank <= 3 %} #{{ item.hospital_rank }} {% else %} #{{ item.hospital_rank }} {% endif %} {% else %} - {% endif %}
{% 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 %} {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.paginator.num_pages <= 7 or num == page_obj.number or num == 1 or num == page_obj.paginator.num_pages %} {{ num }} {% elif num == page_obj.number|add:"-1" or num == page_obj.number|add:"1" %} {% elif num == 2 and page_obj.number > 4 %} ... {% elif num == page_obj.paginator.num_pages|add:"-1" and page_obj.number < page_obj.paginator.num_pages|add:"-3" %} ... {% endif %} {% endfor %} {% if page_obj.has_next %} {% endif %}
{% endif %} {% else %}

{% trans "No appreciations found for this period" %}

{% trans "Try changing the filters or select a different time period" %}

{% endif %}

{% trans "Send Appreciation" %}

{% trans "Share your appreciation with colleagues" %}

{% trans "View Badges" %}

{% trans "See your earned badges" %}

{% trans "All Appreciations" %}

{% trans "View your appreciations" %}

{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}