{% extends "base.html" %} {% block title %}Dashboard — Strategic Memory CRM{% endblock %} {% block content %}

Relationship Intelligence Dashboard

Behavioral profiling, trust trajectories, and organizational politics engine

{{ stakeholders|length }}
Stakeholders
{{ n_interactions }}
Interactions Tracked
{{ n_relationships }}
Active Relationships
{{ net_entropy }}
Network Entropy

Network Intelligence

Gatekeepers

High betweenness centrality — control information flow

{% if gatekeepers %}
    {% for g in gatekeepers %}
  • {{ g }}
  • {% endfor %}
{% else %}

None detected

{% endif %}

Brokers

Bridge otherwise disconnected groups

{% if brokers %}
    {% for b in brokers %}
  • {{ b }}
  • {% endfor %}
{% else %}

None detected

{% endif %}

Coalitions

Clusters of closely-connected stakeholders

{% for c in coalitions %}
{{ c|length }} members
{% endfor %}

Negotiation Dynamics

Detected reciprocal patterns

{% for p in reciprocal_pairs %}
{{ p.a }} ↔ {{ p.b }} {{ p.dynamic|replace('_', ' ') }}
{% endfor %}

Stakeholder Risk Matrix

{% for s in stakeholders %} {% endfor %}
Name Role Organization Tier Avg Trust Power Risk Neg. Style Flags
{{ s.name }} {{ s.role }} {{ s.organization }} {{ s.tier|replace('_', ' ') }}
{{ s.avg_trust }}
{{ s.power_score }}
{{ s.risk_score }}
{{ s.neg_style }} {% for v in s.vulnerabilities %} {{ v|replace('_', ' ') }} {% endfor %} {% for p in s.neg_patterns %} {{ p|replace('_', ' ') }} {% endfor %}
{% endblock %}