{% extends "base.html" %} {% block content %}

REVENUE RECOVERY OUTREACH

Keep every opportunity moving.

Approval-based sending from {{ sender_email }}.

Add next prospect
{{ sent_count }}Contacted
{{ drafts|length }}Ready to review
{{ due|length }}Follow-ups due

APPROVAL QUEUE

Drafts

{% if drafts %}
{% for draft in drafts %}{{ draft.company }}{{ draft.contact_name }}{{ draft.email }}Review email{% endfor %}
{% else %}

No drafts waiting. Add the next verified prospect when ready.

{% endif %}

FOLLOW-UP QUEUE

Due now

{% if due %}
{% for row in due %}{% endfor %}
ProspectDueStatus
{{ row.company }}{{ row.contact_name }} ยท {{ row.email }}{{ row.follow_up_date }}
{% else %}

No follow-ups are currently due.

{% endif %}

LEDGER

Recent activity

{% for row in recent %}{% endfor %}
CompanyContactStatusDate
{{ row.company }}{{ row.email or row.phone }}{{ row.status }}{{ row.date_contacted or 'Historical' }}
{% endblock %}