{% extends "admin/base.html" %} {% block page_title %}连锁管理{% endblock %} {% block content %}
| 序号 | 连锁名称 | 门店数 | 创建时间 | 操作 |
|---|---|---|---|---|
| {{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 %} |
| 暂无连锁,请先添加 | ||||