{% extends "base.html" %} {% block title %}Pipeline — karyab{% endblock %} {% block content %} {% if flash %} {% if flash_error %}
{{ flash }}
{% else %}
{{ flash }}
{% endif %} {% endif %}

Pipeline {{ total }}

{% if total == 0 %}

No active applications.

{% else %} {% for sg in stage_groups %}

{{ sg.label }} {{ sg.rows | length }}

{% for row in sg.rows %} {% endfor %}
Company Title Days Follow-up
{{ row.group.rep.company }} {{ row.group.rep.title }} {% if row.days_since is not none %} {{ row.days_since }}d {% else %} — {% endif %} {% if row.fw_state.draft %} 📝 draft {% elif row.fw_state.sent_at %} ✓ sent {% elif row.fw_state.due %} 🔔 due {% else %} {% endif %}
{% endfor %} {% endif %} {% endblock %}