{% extends "base.html" %} {% block title %}Proposals - ICDEV™{% endblock %} {% block content %}
{{ opportunities | length }}
Total
{{ opportunities | selectattr('status', 'equalto', 'writing') | list | length }}
In Writing
{{ opportunities | selectattr('status', 'equalto', 'review') | list | length }}
In Review
{{ opportunities | selectattr('status', 'equalto', 'submitted') | list | length }}
Submitted
{{ nearest_deadline if nearest_deadline is not none else '—' }}
Days to Nearest Deadline

Opportunities

{% for opp in opportunities %} {% else %} {% endfor %}
Solicitation # Title Agency Due Date Days Left Type Set-Aside Status Proposal Mgr
{{ opp.solicitation_number }} {{ opp.title }} {{ opp.agency }} {{ opp.due_date }} {{ opp.days_left if opp.days_left is not none else '—' }} {{ opp.proposal_type }} {{ opp.set_aside_type or '—' }} {% set status_colors = {'intake': 'info', 'bid_no_bid': 'warning', 'go': 'success', 'writing': 'info', 'review': 'warning', 'final': 'success', 'submitted': 'success', 'won': 'success', 'lost': 'error', 'no_bid': 'warning', 'cancelled': 'error'} %} {{ opp.status | replace('_', ' ') | title }} {{ opp.proposal_manager or '—' }}
No opportunities yet. Click "+ New Opportunity" to create one.
{% endblock %}