{% extends "base.html" %} {% block title %}{{ app_name }} — Leads{% endblock %} {% block content %}

Contact Submissions

Total
{{ stats.total }}
New
{{ stats.new }}
Contacted
{{ stats.contacted }}
Closed
{{ stats.closed }}
{% for s in submissions %} {% endfor %} {% if not submissions %} {% endif %}
Date Name Email Organization Role Interest Status Actions
{{ s.created_at[:10] if s.created_at else '' }} {{ s.name }} {{ s.email }} {{ s.organization or '—' }} {{ s.role or '—' }} {{ s.interest or '—' }} {% if s.status == 'new' %} NEW {% elif s.status == 'contacted' %} CONTACTED {% elif s.status == 'qualified' %} QUALIFIED {% elif s.status == 'closed' %} CLOSED {% endif %} {% if s.status == 'new' %} {% elif s.status == 'contacted' %} {% endif %}
No submissions yet. Leads from icdev.ai/contact will appear here.
{% endblock %}