{% extends "layout.html" %} {% block content %}

商店管理

{% for shop in shops %}
{{ shop.name }} (ID: {{ shop.shop_id }})

{{ shop.description or '无描述' }}

{% if shop.shop_type == 'premium' %} 高级商店 {% elif shop.shop_type == 'limited' %} 限时商店 {% else %} 普通商店 {% endif %} {% if shop.is_active %} 营业中 {% else %} 已关闭 {% endif %}

{% if shop.start_time or shop.end_time %}

{% if shop.start_time %} 开放时间: {{ shop.start_time }} {% endif %} {% if shop.end_time %}
结束时间: {{ shop.end_time }} {% endif %}

{% endif %} {% if shop.daily_start_time or shop.daily_end_time %}

{% if shop.daily_start_time and shop.daily_end_time %} 每日营业: {{ shop.daily_start_time }} - {{ shop.daily_end_time }} {% elif shop.daily_start_time %} 每日开始: {{ shop.daily_start_time }} {% elif shop.daily_end_time %} 每日结束: {{ shop.daily_end_time }} {% endif %}

{% endif %}
{% else %}

还没有创建任何商店。

{% endfor %}
{% endblock %} {% block extra_js %} {{ super() }} {% endblock %}