23 lines
821 B
HTML
23 lines
821 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="container">
|
|
<nav class="breadcrumb is-small" aria-label="breadcrumbs">
|
|
<ul>
|
|
<li><a href="{{ workspace_url }}">AI Workspace</a></li>
|
|
<li class="is-active"><a aria-current="page">Behavioral Graphs</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="mb-4">
|
|
<h1 class="title is-4 mb-1">Behavioral Graphs: {{ person.name }}</h1>
|
|
<p class="is-size-7 has-text-grey">
|
|
Rebuilt from message and event timing data using the MS/PS model rather than workspace snapshots.
|
|
</p>
|
|
{% include "partials/ai-insight-nav.html" with active_tab="graphs" %}
|
|
</div>
|
|
{% include "partials/ai-workspace-behavioral-graphs.html" %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|