{% extends 'base.html' %} {% load static %} {% block title %}Clinical Report | DiabeScreen{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
Diabetes Risk Assessment Report
{{ patient.created_at|date:"F d, Y \a\t g:i A" }} CLINICAL REPORT ADA COMPLIANT

{% if patient.risk_level == 'HIGH' %} High Risk {% elif patient.risk_level == 'MEDIUM' %} Moderate Risk {% else %} Low Risk {% endif %}

Risk Stratification per ADA Clinical Guidelines

Clinical Recommendation

{{ patient.recommendation }}

Patient Demographics

Assessment ID #{{ patient.id }}
Age {{ patient.age }} years
Gender {% if patient.gender == 'Male' %} Male {% else %} Female {% endif %}

Clinical Measurements

BMI {{ patient.bmi|floatformat:1 }} {% if patient.bmi < 18.5 %} {% elif patient.bmi < 25 %} {% elif patient.bmi < 30 %} {% else %} {% endif %}
Blood Pressure {{ patient.blood_pressure }} mmHg
Glucose {{ patient.glucose_level }} mg/dL {% if patient.glucose_level < 100 %} {% elif patient.glucose_level < 126 %} {% else %} {% endif %}
Risk Category {% if patient.risk_level == 'HIGH' %} High Risk {% elif patient.risk_level == 'MEDIUM' %} Moderate Risk {% else %} Low Risk {% endif %}
Recommended Follow-up {% if patient.risk_level == 'HIGH' %} Immediate referral / 1 month {% elif patient.risk_level == 'MEDIUM' %} 3-6 months {% else %} 12 months {% endif %}
Family History {% if patient.family_history %} Positive - First-degree relative {% else %} Negative {% endif %}
HbA1c Testing {% if patient.risk_level == 'HIGH' %} Recommended within 30 days {% elif patient.risk_level == 'MEDIUM' %} Consider within 3 months {% else %} Routine screening {% endif %}
New Assessment Assessment History Print Report
{% endblock %}