{{ household.head_name }}
{{ household.household_code }}
- 电话
- {{ household.phone or '未登记' }}
- 礼金
- ¥{{ '%.2f'|format(household.total_gift_amount) }}
- 预计 / 实际
- {{ household.expected_attendee_count }} / {{ household.actual_attendee_count }}
- 儿童
- {{ household.child_count }}(红包 {{ household.red_packet_child_count }})
- 备注
- {{ household.note or '-' }}
{% for tag_id in household.tag_option_ids_json %}
{% for option in tag_options if option.id == tag_id %}
{{ option.option_label }}
{% endfor %}
{% endfor %}
{% endif %}
{{ household_value_label('invite_status', household.invite_status) }}
{{ household_value_label('attendance_status', household.attendance_status) }}