{% extends "base.html" %} {% block title %}تذاكري{% endblock %} {% block content %}

{% if current_user.role == 'trainer' %} تذاكر الطلاب {% elif current_user.role == 'admin' %} جميع التذاكر {% else %} تذاكري {% endif %}

استعراض الدورات ←
الكل مفتوحة قيد المعالجة تم الحل مغلقة
{% for ticket in tickets %}
{{ ticket.type_label_ar }} {{ ticket.status_label_ar }} {{ ticket.created_at.strftime('%Y/%m/%d') }}

{{ ticket.subject }}

{{ ticket.course.title_ar }}

{% if ticket.last_message %}

{{ ticket.last_message.message }}

{% endif %}
{% else %}

لا توجد تذاكر بعد

استعرض الدورات المتاحة
{% endfor %}
{% endblock %}