{% extends 'assistant/base.html' %} {% load static %} {% load i18n %} {% block content %}

{% trans "گزارش آنالیز ترکیب بدنی" %}

{% if is_assistant %} {% endif %} {% trans "بازگشت" %}
{% trans "بیمار:" %} {{ patient.profile.first_name }} {{ patient.profile.last_name }}
{% trans "تاریخ ایجاد:" %} {{ report.created_at|date:"Y/m/d - H:i" }}
{% trans "وضعیت:" %} {% if report.status == 'shared' %} {% trans "به اشتراک گذاشته شده" %} {% elif report.status == 'confirmed' %} {% trans "تایید شده" %} {% else %} {% trans "در انتظار بررسی" %} {% endif %}
{% if report.image %}

{% trans "تصویر آنالیز" %}

Body Analysis
{% endif %} {% if report.report_data %}
{{ report.report_data|json_script:"report-data" }} {% else %}

{% trans "داده‌های گزارش در دسترس نیست" %}

{% if report.error_message %}

{% trans "خطا:" %} {{ report.error_message }}

{% endif %}
{% endif %}
{% if is_assistant %} {% endif %} {% endblock %}