{% extends "base.html" %} {% block title %}تیکت #{{ ticket.id }} - پنل کاربری{% endblock %} {% block content %}

{{ ticket.subject }}

#{{ ticket.id }} {% if ticket.status == 'open' %}باز{% else %}بسته شده{% endif %}
{% for reply in replies %}
{% if reply.is_admin_reply %}
{% endif %}
{{ reply.message|nl2br|safe }}
{{ reply.created_at.strftime('%H:%M') if reply.created_at else '' }}
{% endfor %} {% if ticket.status != 'open' %}
این تیکت بسته شده است و امکان ارسال پاسخ وجود ندارد.
{% endif %}
{% if ticket.status == 'open' %}
{% endif %}
{% endblock %}