{% extends "base.html" %} {% block title %}Domain: {{ domain }} — Fractal Memory{% endblock %} {% block content %}
{% if memories %} {% for m in memories %} {% endfor %}
Label / Summary Lifecycle Intensity Retrievals Created
{{ m.l1_label }}
{{ m.l2_summary }}
{{ m.lifecycle }} {{ "%.2f"|format(m.intensity) }} {{ m.retrieval_count }} {{ m.created_at.strftime("%Y-%m-%d %H:%M") if m.created_at else "—" }}
{% else %}
No memories in this domain yet.
{% endif %}
{% endblock %}