{% for drop in stage_drop.details %} {% endfor %}
# 掉落物品
{{ loop.index }} {% for item in drop %}{{ item.itemName }}x{{ item.quantity }}{% if not loop.last %},{% endif %}{% endfor %}
合计 {% for item in stage_drop.summary %}{{ item.itemName }}x{{ item.quantity }}{% if not loop.last %},{% endif %}{% endfor %}