{% extends "base.html" %} {% block title %}GovCon Intelligence - ICDEVโข Dashboard{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}
SAM.gov scanning ยท Requirement mining ยท Capability mapping ยท Proposal automation
| Solicitation # | Title | Agency | Due | Days | Status | pWin | Wtd Value | Capture Mgr | |
|---|---|---|---|---|---|---|---|---|---|
| {{ stage_icon }} | {{ opp.solicitation_number }} | {{ opp.agency or 'โ' }} | {{ opp.due_date or 'โ' }} | {{ opp.days_left if opp.days_left is not none else 'โ' }} | {{ stage_icon }} {{ opp.status | replace('_',' ') | title }} |
{% set display_pwin = opp.computed_pwin_pct if opp.computed_pwin_pct is not none else opp.win_probability %}
{% if display_pwin is not none %}
{% set pct = display_pwin | int %}
{% if pct >= 70 %}{% set bar_color = 'var(--status-green,#4caf50)' %}
{% elif pct >= 40 %}{% set bar_color = 'var(--status-yellow,#ffc107)' %}
{% else %}{% set bar_color = 'var(--status-red,#dc3545)' %}{% endif %}
|
{% if opp.weighted_value is not none %} ${{ "{:,.0f}".format(opp.weighted_value) }} {% else %} โ {% endif %} | {{ opp.capture_manager or 'โ' }} | |
| No active proposals in the pipeline. | |||||||||
| Domain | Count | Distribution |
|---|---|---|
| {{ domain }} | {{ count }} | |
| No requirements extracted yet. Run the pipeline to begin. | ||
| Title | Agency | NAICS | Type | Deadline | Linked | Actions |
|---|---|---|---|---|---|---|
| {{ opp.agency or 'โ' }} | {{ opp.naics_code or 'โ' }} |
{% if opp.notice_type %} {{ opp.notice_type }} {% endif %} | {{ opp.response_deadline or 'โ' }} | {% if opp.id in linked_opp_ids %} โ {% else %} {% endif %} | ||
| No opportunities cached. Click "Discover" to scan SAM.gov. | ||||||
Last pipeline run: {{ stats.last_pipeline_run }}
{% endif %}