{% extends "base.html" %} {% block title %}Memory Detail — Fractal Memory{% endblock %} {% block content %} {% if memory %}
{{ memory.lifecycle }} {{ memory.id }}
L0 — Tag
{{ memory.l0_tag }}
L1 — Label
{{ memory.l1_label }}
L2 — Summary
{{ memory.l2_summary }}
L3 — Full Detail
{{ memory.l3_full }}
L4 — Raw
{{ memory.l4_raw }}
Domain{{ memory.domain }}
Intensity{{ "%.3f"|format(memory.intensity) }}
Retrieval Count{{ memory.retrieval_count }}
Chronic Score{{ "%.3f"|format(memory.chronic_score) }}
Created{{ memory.created_at }}
Updated{{ memory.updated_at }}
{% if edges %}

Associations ({{ edges|length }})

{% for edge in edges %} {% endfor %}
Connected MemoryWeight
{{ edge.target if edge.source == memory.id|string else edge.source }} {{ "%.3f"|format(edge.weight) }}
{% endif %}
{% else %}
Memory not found.
{% endif %} {% endblock %}