{% extends "base.html" %} {% block title %}{{ exam["title"] }} | {{ school_name }}{% endblock %} {% block body %}
{{ exam["title"] }}
{{ exam["subject"] or school_tagline }}{% if exam["grade"] %} · {{ exam["grade"] }}{% endif %}
بازگشت به آزمون‌ها
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %}
{{ msg }}
{% endfor %} {% endwith %} {% set state_code, state_label = exam_state(exam) %}

برگه ورود به آزمون

{{ exam["description"] or "قبل از شروع، مشخصات آزمون را بررسی کنید." }}

{{ state_label }}
درس
{{ exam["subject"] or "ثبت نشده" }}
پایه / کلاس
{{ exam["grade"] or "ثبت نشده" }}
دبیر
{{ exam["teacher"] or "ثبت نشده" }}
مدت پاسخگویی
{{ exam["duration_minutes"] or "آزاد" }}{% if exam["duration_minutes"] %} دقیقه{% endif %}
شروع
{{ format_datetime(exam["starts_at"]) }}
پایان
{{ format_datetime(exam["ends_at"]) }}
{% if exam["instructions"] %}
راهنمای آزمون

{{ exam["instructions"] }}

{% endif %}
{% if already_submitted %}
شما قبلاً در این آزمون شرکت کرده‌اید. نتیجه در پنل دانش‌آموزی قابل مشاهده است.
بازگشت به پنل من {% elif state_code == "open" %} شروع آزمون {% elif state_code == "upcoming" %}
این آزمون هنوز شروع نشده است.
{% elif state_code == "ended" %}
مهلت شرکت در این آزمون به پایان رسیده است.
{% else %}
این آزمون فعلاً غیرفعال است.
{% endif %}
{% endblock %}