{% extends "base.html" %} {% set active = 'leads' %} {% block title %}Leads{% endblock %} {% block content %}

Leads ({{ leads|length }})

Export CSV
{% if not configured %}

Not configured yet — add your Tavily API key and describe your ideal customer in Settings, then come back and hit Run now.

{% endif %} {% if runs %}
Recent runs {% for r in runs %} {% endfor %}
StartedStatusQueriesResultsNew leadsNotes
{{ r['started_at'] }} {{ r['status'] }} {{ r['queries'] }}{{ r['found'] }}{{ r['new'] }} {{ r['message'] }}
{% endif %} {% if leads %} {% for l in leads %} {% endfor %}
ScoreCompanyWebsiteWhy it matchedNotionAdded
{% if l['score'] %}{{ l['score'] }}{% else %}{% endif %} {{ l['name'] }} {{ l['domain'] }} {{ l['reason'] or l['snippet'][:120] }} {% if l['notion_ok'] %}✓{% elif notion_on %}·{% else %}off{% endif %} {{ l['created_at'][:10] }}
{% else %}

No leads yet.

Once configured, the finder runs every night — or press Run now to watch it work. Fresh prospects land here and in your Notion database.

{% endif %} {% endblock %}