状态
{% if task.status == 'pending' %}
⏳ 待审批
{% elif task.status == 'approved' %}
✅ 已通过
{% elif task.status == 'rejected' %}
❌ 已驳回
{% else %}
🗑️ 已弃置
{% endif %}
提交时间
{{ task.created_at }}
{% if task.finished_at %}
完成时间
{{ task.finished_at }}
{% endif %}
当前层级
{% if task.status == 'pending' %}
第 {{ task.current_level + 1 }} 级
{% if template %}
/ 共 {{ template.level }} 级
{% endif %}
{% else %}
✅ 已完成全部审批
{% endif %}
{% if task.parent_task_id %}
原任务
#{{ task.parent_task_id }} (重新提交)
{% endif %}
{% if task.attachment_path %}
{% endif %}