{{ show.name }}
地点:{{ show.venue_name }} {{show.venue_detail}}
开始时间:{{ show.start_time }}
结束时间:{{ show.end_time }}
主办方:{{ show.organizer }}
{% macro icon(name) %}
{% endmacro %}
{% if show.is_refund == 0 %}
{{ icon('no') }} 不可退
{% endif %}
{% if show.id_bind == 1 %}
{{ icon('yes') }} 实名制
{% endif %}
{% if show.has_eticket == True %}
{{ icon('yes') }} 电子票/兑换票
{% endif %}
{% for ticket in show.ticket_info %}
{{ ticket.description }} {{ ticket.sale_start }} -- {{ ticket.sale_end }} ¥{{ ticket.price / 100 }} ({{ ticket.status }})
{% endfor %}