{% extends "base.html" %} {% block title %}客户管理 - 本地贷款CRM{% endblock %} {% block header_title %}客户管理 ({{ total }}){% endblock %} {% block content %}
清除
{% if customers %}
{% for c in customers %}
{{ c.name }} {% if c.company %}{{ c.company }}{% endif %}
{{ c.avatar_stage }}
{% if c.phone %}
📱 {{ c.phone }}
{% endif %} {% if c.source %}
来源: {{ c.source }}
{% endif %}
{{ c.created_at[:10] if c.created_at else '' }}
{% if c.id in customer_tags and customer_tags[c.id] %}
{% for t in customer_tags[c.id][:5] %} {{ t.name }} {% endfor %} {% if customer_tags[c.id]|length > 5 %} +{{ customer_tags[c.id]|length - 5 }} {% endif %}
{% endif %}
{% endfor %}
{% if total > 20 %}
{% if page > 1 %} 上一页 {% endif %} {{ page }} / {{ (total + 19) // 20 }} {% if page * 20 < total %} 下一页 {% endif %}
{% endif %} {% else %}
📋

暂无客户数据

添加第一个客户
{% endif %} {% endblock %}