{% extends "base.html" %} {% block title %}门店管理 - 总部{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
添加门店
{% set ns = namespace(empty_names=[]) %} {% for s in stores %} {% if store_users[s.id]|length == 0 %} {% set ns.empty_names = ns.empty_names + [s.name] %} {% endif %} {% endfor %} {% if ns.empty_names %}
未分配人员的门店 {{ ns.empty_names|length }}
    {% for name in ns.empty_names %}
  • {{ name }}
  • {% endfor %}
{% endif %}
门店列表 {{ stores|length }} 家门店
{% for store in stores %}
{{ store.name }} {% if store_users[store.id]|length == 0 %} 未分配人员 {% else %} {{ store_users[store.id]|length }} 人 {% endif %}
当前人员
{% if store_users[store.id] %} {% for u in store_users[store.id] %} {% endfor %}
姓名 企微账号 操作
{{ u.name }} {{ u.wechat_userid }}
{% else %}

该门店尚未分配人员,请从下方企业微信通讯录中选择并分配

{% endif %}
从企业微信通讯录分配
正在加载企业微信通讯录...
0 位成员
{% else %}

暂无门店,请在左侧添加

{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}