{% extends "base.html" %} {% block title %}推荐联系客户 - 本地贷款CRM{% endblock %} {% block header_title %}推荐联系客户{% endblock %} {% block extra_js %} {% endblock %} {% block content %}

🎂 当天生日

{{ grouped.get('birthday', [])|length }}
{% set birthdays = grouped.get('birthday', []) %} {% if birthdays %} {% else %}

今日没有客户过生日

{% endif %}

📞 下次联系提醒

{{ grouped.get('next_contact', [])|length }}
{% set next_contacts = grouped.get('next_contact', []) %} {% if next_contacts %} {% else %}

今日没有需要联系的客户

{% endif %}

💤 沉睡客户

{{ grouped.get('dormant', [])|length }}
{% set dormant = grouped.get('dormant', []) %} {% if dormant %} {% else %}

没有沉睡超过90天的客户

{% endif %}
{% endblock %}