{% extends "base.html" %} {% block title %}{% if is_edit %}编辑工单{% else %}新建工单{% endif %}{% endblock %} {% block content %}

{% if is_edit %}✏️ 编辑工单{% else %}➕ 新建工单{% endif %}

可直接 Ctrl+V 粘贴截图,图片会内联显示
{{ (ticket.description | safe) if is_edit else '' }}
📎 点击选择文件上传(图片/文档/压缩包等,最大 20 MB)
{% if is_edit %}
{% endif %}
{% if not is_edit %}
{% endif %}
点击选择抄送人…
{% for u in all_users() %} {% if u.username != current_username %}
{{ u.username }}
{% endif %} {% endfor %}
取消
{% endblock %}