{% extends "admin/base.html" %} {% block page_title %}连锁管理{% endblock %} {% block content %}
连锁列表({{chains|length}})
{% for c in chains %} {% else %} {% endfor %}
序号连锁名称门店数创建时间操作
{{loop.index}} {% if c.pinned %}置顶{% endif %}{{c.name}}{{c.store_count}} {{c.created_at.strftime('%Y-%m-%d') if c.created_at}} {% if current_user.role == 'super' %}
更名
{% else %} 仅超管可操作 {% endif %}
暂无连锁,请先添加
{% endblock %}