{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block head %} {% endblock %} {% block content %}
| # | Executive | {% if has_date_filter %}ICP (Period){% else %}ICP This Month{% endif %} | {% if has_date_filter %}ICP (Prior){% else %}ICP Last Month{% endif %} | Trend | Posts | New ICPs |
|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ e.name }} ({{ e.code }}) | {{ e.icp_this_month }} | {{ e.icp_last_month }} | {% if e.trend_pct > 0 %} +{{ e.trend_pct }}% {% elif e.trend_pct < 0 %} {{ e.trend_pct }}% {% else %} 0% {% endif %} | {{ e.posts }} | {{ e.new_icps }} |
| Executive | {% if has_date_filter %}Posts (Period){% else %}Posts (30 days){% endif %} | Days Since Last Post |
|---|---|---|
| {{ p.name }} ({{ p.code }}) | {{ p.posts_30d }} | {{ p.days_since_last_post if p.days_since_last_post is not none else "—" }} |
| Status | Count | % |
|---|---|---|
| {{ s.status }} | {{ s.count }} | {{ s.percentage }}% |
| # | Name | Company | Interactions | Last Active |
|---|---|---|---|---|
| {{ loop.index }} | {{ e.name }} | {{ e.company }} | {{ e.total_interactions }} | {{ e.latest_interaction }} |
| # | Company | ICP Contacts | Total Interactions |
|---|---|---|---|
| {{ loop.index }} | {{ c.company }} | {{ c.icp_count }} | {{ c.total_interactions }} |
| # | Post | By | Reactions | Unique ICPs |
|---|---|---|---|---|
| {{ loop.index }} | {{ p.post_hook[:80] }}{% if p.post_hook|length > 80 %}…{% endif %} | {{ p.source_profile }} | {{ p.reaction_count }} | {{ p.unique_icps }} |