{% extends "base.html" %} {% from "_hub.html" import hub %} {% block title %}Pipeline — karyab{% endblock %} {% block content %} {% call hub(hub_sections) %}

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
{{ row.group.rep.company }} {{ row.group.rep.title }} {% if row.days_since is not none %} {{ row.days_since }}d {% else %} — {% endif %} {% if row.followup_due %} 🔔 follow-up due {% endif %}
{% endfor %} {% endif %} {% endcall %} {% endblock %}