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

{% trans "Appreciation Leaderboard" %}

{% trans "Send Appreciation" %}
{% trans "Reset" %}
{% if page_obj %}
{% for item in page_obj %} {% endfor %}
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 %} {% 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 "Send Now" %}
{% trans "View Badges" %}

{% trans "See your earned badges" %}

{% trans "My Badges" %}
{% trans "All Appreciations" %}

{% trans "View your appreciations" %}

{% trans "View List" %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}