{{ show.name }}
地点:{{ show.venue_name }} {{ show.venue_detail }}
开始时间:{{ show.start_time }}
结束时间:{{ show.end_time }}
主办方:{{ show.organizer }}
{% if show.guests %}
嘉宾:{{ show.guests }}
{% endif %}
{% macro icon(name) %}
{% endmacro %}
{% if show.is_refund == 0 %}
{{ icon('no') }} 不可退
{% endif %}
{% if show.id_bind == 1 %}
{{ icon('yes') }} 实名制
{% endif %}
{% if show.has_eticket %}
{{ icon('yes') }} 电子票/兑换票
{% endif %}
{% for screen_name, tickets in show.ticket_info | groupby('screen_name') %}