{% extends "base.html" %} {% block title %}工单 #{{ ticket.id }}{% endblock %} {% block content %}

#{{ ticket.id }} {{ ticket.title }}

创建 {{ ticket.created_at.strftime('%Y-%m-%d %H:%M') }} · 更新 {{ ticket.updated_at.strftime('%Y-%m-%d %H:%M') }}
编辑 {% if ticket.status != 'closed' and ticket.status != 'resolved' %}
{% endif %}

描述

{{ ticket.description | render_desc }}

附件({{ attachments|length }})

📎 点击选择、拖拽或粘贴(Ctrl+V)上传图片/附件
支持图片、文档、压缩包等,最大 20 MB
{% for att in attachments %}
{% if att.is_image %} {{ att.original_name }} {% else %}
{% if att.content_type == 'application/pdf' %}📄 {% elif att.content_type.startswith('text/') or att.content_type == 'application/json' %}📝 {% elif att.content_type.startswith('application/') %}📦 {% else %}📎{% endif %}
{{ att.original_name }} {% endif %}
{{ att.uploaded_by }} · {{ att.uploaded_at.strftime('%m-%d %H:%M') }} · {{ att.size / 1024 | round(1) }} KB
{% endfor %}

评论({{ ticket.comments|length }})

{% for c in ticket.comments %}
{{ c.author }} {{ c.created_at.strftime('%m-%d %H:%M') }}
{{ c.content }}
{% endfor %}
{% endblock %}