{% extends "base.html" %} {% block title %}选择座位 - 影院订票系统{% endblock %} {% block content %}
{% if showtime %}

选择座位

{{ showtime.title }}

{{ showtime.start_time.strftime('%Y年%m月%d日 %H:%M') }}
{{ showtime.hall_name }}
¥{{ showtime.price }} / 座
{{ showtime.row_count }}
总排数
{{ showtime.col_count }}
总列数
{{ showtime.row_count * showtime.col_count }}
总座位

购票须知

{% else %}

场次不存在

您要查看的场次可能已被取消或不存在

返回首页
{% endif %}
{% block scripts %} {% endblock %} {% endblock %}