{{ exam.title }}
{{ exam.grade }} · {{ exam.subject }} · دبیر: {{ exam.teacher }}
{{ exam.created_at|format_datetime }}
توزیع نمرات
نتایج دانشآموزان (مرتبشده بر حسب نمره)
| # | نام دانشآموز | کد دانشآموز | کلاس | نمره | مدت زمان | وضعیت | نیازمند توجه |
|---|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ result.first_name or result.student }} {{ result.last_name or "" }} | {{ result.student_code or "-" }} | {{ result.grade or "-" }} | {{ result.score or "نیافته" }} | {% if result.duration_seconds %} {{ "%.0f"|format(result.duration_seconds / 60) }} دقیقه {% else %} - {% endif %} | {% if result.status == "approved" %} ✓ تایید {% elif result.status == "rejected" %} ✗ رد {% else %} در انتظار {% endif %} | {% if is_flagged %} 🚩 {% if result.violations and result.violations > 0 %} {% endif %} {% else %} ✓ {% endif %} |
| هنوز نتیجهای ثبت نشده است. | |||||||
خلاصه آمار
بالاترین نمره: {{ "%.1f"|format(stats.max_score or 0) }}
پایینترین نمره: {{ "%.1f"|format(stats.min_score or 0) }}
میانگین مدت زمان: {{ stats.avg_duration|int }} ثانیه
تاییدشده: {{ stats.approved }}
ردشده: {{ stats.rejected }}
درخواست بررسی: {{ stats.pending }}