{% extends "base.html" %} {% block title %}Dashboard - Leads{% endblock %} {% block content %}

Leads Information

📧 Send Bulk Emails
{% for lead in leads %} {% else %} {% endfor %}
Name Email Company Status Created At Action
{{ lead.name or "N/A" }} {{ lead.email or "N/A" }} {{ lead.company or "N/A" }} {% set status_class = "status-other" %} {% if lead.status == "New" %} {% set status_class = "status-new" %} {% endif %} {% if lead.status == "Replied" %} {% set status_class = "status-replied" %} {% endif %} {% if lead.status == "Follow-up" %} {% set status_class = "status-followup" %} {% endif %} {% if lead.status == "Rejected" %} {% set status_class = "status-rejected" %} {% endif %} {{ lead.status or "N/A" }} {{ lead.created_at.strftime("%d-%b-%Y %H:%M") if lead.created_at else "N/A" }}
No leads found matching your criteria.
{% if page > 1 or has_next %} {% endif %}
{% endblock %}