{% extends "layouts/base.html" %} {% load i18n static %} {% block title %}{% trans "Appreciation Details" %} - {% endblock %} {% block content %}
{% if appreciation.category %} {{ appreciation.category.name_en }} {% endif %}

{{ appreciation.message_en }}

{% if appreciation.message_ar %}

{{ appreciation.message_ar }}

{% endif %}
{{ appreciation.get_status_display }}

{% trans "From" %}
{% if appreciation.is_anonymous %}

{% trans "Anonymous" %}

{% else %}

{{ appreciation.sender.get_full_name }}

{% endif %}
{% trans "To" %}

{{ appreciation.recipient_name }}

{% trans "Sent At" %}

{{ appreciation.sent_at|date:"F j, Y, g:i A" }}

{% trans "Visibility" %}

{{ appreciation.get_visibility_display }}

{% if appreciation.acknowledged_at %}
{% trans "Acknowledged on" %} {{ appreciation.acknowledged_at|date:"F j, Y, g:i A" }}
{% endif %}
{% if is_recipient and appreciation.status == 'sent' %}
{% csrf_token %}
{% endif %} {% trans "Back to List" %}
{% if related %}
{% trans "Related Appreciations" %}
{% endif %}
{% trans "Quick Info" %}
  • {% trans "Hospital:" %} {{ appreciation.hospital.name }}
  • {% if appreciation.department %}
  • {% trans "Department:" %} {{ appreciation.department.name }}
  • {% endif %}
  • {% trans "ID:" %} #{{ appreciation.id }}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}