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

{{ s.name }}

{{ s.role }} — {{ s.organization }}

{{ s.tier.value|replace('_', ' ') }}

Influence Metrics

Power Score
{{ power_score }}
PageRank
{{ pagerank }}
Betweenness
{{ betweenness }}

Risk Assessment

{% if risk %}
{{ risk.risk_score }}
{% for f in risk.factors %} {{ f|replace('_', ' ') }} {% endfor %} {% if risk.recommendations %}

Recommendations

{% endif %} {% endif %}

Personality Profile

{% for axis, val in s.personality.items() %}
{{ axis|replace('_', ' ')|title }}
{{ (val * 100)|int }}%
{% endfor %}

Negotiation Profile

{% if profile %}
Style
{{ profile.dominant_style }}
Reliability
{{ profile.reliability_score }}
Concession Ratio
{{ profile.concession_ratio }}
Power Moves
{{ profile.power_moves }}
Negotiations
{{ profile.total_negotiations }}
{% if profile.patterns %}
{% for p in profile.patterns %} {{ p|replace('_', ' ') }} {% endfor %}
{% endif %} {% else %}

No negotiation data

{% endif %}

⚡ AI Strategic Advisor & Tactical Briefing

Generate high-stakes negotiation battleplans, leverage points, and red-line warnings

Strategic Context

Goals

    {% for g in s.goals %}
  • {{ g }}
  • {% endfor %}

Vulnerabilities

    {% for v in s.vulnerabilities %}
  • {{ v }}
  • {% endfor %}

Political Vulnerabilities

{% if vulnerabilities %}
    {% for v in vulnerabilities %}
  • {{ v|replace('_', ' ') }}
  • {% endfor %}
{% else %}

None detected

{% endif %}

Relationships

{% for r in relationships %} {% endfor %}
Stakeholder Trust Entropy Risk Interactions Trajectory Reciprocity
{{ r.other_name }}
{{ r.trust }}
{{ r.entropy }}
{{ r.risk }}
{{ r.interactions }} {{ r.trajectory|replace('_', ' ') }} {{ r.reciprocity }}

Recent Interactions

{% for i in interactions %}
{{ i.timestamp[:10] }}
{{ i.type|replace('_', ' ') }}

{{ i.summary }}

{% if i.commitments_made %}
Commitments: {% for c in i.commitments_made %} {{ c }} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}