{% extends "base.html" %} {% block title %}Pilot Call History — ReliefSignal{% endblock %} {% block meta_description %}Review saved tax relief pilot calls with source, completion score, CRM readiness, and urgency flags.{% endblock %} {% block content %}
History

Pilot call records

Every saved call becomes evidence for what the MVP captures and what integrations still need validation.

New pilot call
{% if calls %}
{% for call in calls %} {% endfor %}
Client Source Completion Readiness Flags Open
{{ call.client_name }}
{{ call.phone }}
{{ call.get_call_source_display }}
{{ call.created_at|date:"M j, Y g:i A" }}
{{ call.completion_score }}% Ytel: {{ call.get_ytel_audio_status_display }}
Logics: {{ call.get_logics_api_status_display }}
{% if call.urgent_flags %} {% for flag in call.urgent_flags %}{{ flag }}{% endfor %} {% else %} None {% endif %} Review
{% else %}

No call history yet

Save your first pilot call to confirm the workflow from transcript capture to scored intake review.

Create first call
{% endif %}
{% endblock %}