{% extends "base.html" %} {% set active_page = "dashboard" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

{{ discovered_today }}
Discovered Today
{{ status_counts.get('questions_sent', 0) }}
Questions Pending
{{ status_counts.get('bid_placed', 0) }}
Bids Active
{{ status_counts.get('awarded', 0) }}
Awarded
{{ active_dev }}
In Development
{{ status_counts.get('completed', 0) }}
Completed
Bids Pending Value
{{ bids_pending | currency }}
Total Earned
{{ total_earned | currency }}
Pending Decisions
{{ pending_decisions }}
{% if pending_decisions > 0 %} View → {% endif %}

Guardrail Controls

$

Recent Messages

{% for msg in recent_messages %}
{% if msg.sender.value == 'agent' %}
{% elif msg.sender.value == 'owner' %}
{% else %}
{% endif %}
{{ msg.message_text[:120] }}
{{ msg.created_at | timeago }}
{% else %}
No recent messages
{% endfor %}

Live Agent Activity

Live
Loading activity feed...
{% endblock %}