📋 待辦事項詳情
{% if todo.description %}
描述:
{{ todo.description }}
{% endif %}
狀態:
{% if todo.status == 'NEW' %}新建
{% elif todo.status == 'IN_PROGRESS' %}進行中
{% elif todo.status == 'DONE' %}完成
{% else %}{{ todo.status }}{% endif %}
優先級:
{% if todo.priority == 'HIGH' %}高
{% elif todo.priority == 'MEDIUM' %}中
{% elif todo.priority == 'LOW' %}低
{% else %}{{ todo.priority }}{% endif %}
{% if todo.due_date %}
到期日:
{{ todo.due_date.strftime('%Y年%m月%d日') }}
{% endif %}
建立者:
{{ todo.creator_display_name or todo.creator_ad }}
建立時間:
{{ todo.created_at.strftime('%Y年%m月%d日 %H:%M') }}