{% extends "base.html" %} {% block title %}{{ domain.name }} โ€” Memory โ€” {{ config.INSTANCE_NAME or 'AI Data Analyst' }}{% endblock %} {% block content %} โ† All memory domains
{{ domain.icon or '๐ŸŽฏ' }}

{{ domain.name }}

{% if domain.description %}
{{ domain.description }}
{% endif %}
{{ items|length }} item{{ 's' if items|length != 1 else '' }} {% if required_count %} ยท {{ required_count }} required{% endif %}
{% if effective_requirement == 'required' %} {% elif in_stack %} {% else %} {% endif %}
{% if items %}
{% for it in items %}

{{ it.title }}

{% if it.is_required %} Required {% endif %} {% if it.category %}{{ it.category }}{% endif %} {% if it.source_type %}{{ it.source_type }}{% endif %} {% if it.status and it.status != 'approved' %} {{ it.status }} {% endif %} {% if it.confidence %} {{ (it.confidence * 100)|round(0)|int }}% conf {% endif %}
{{ it.content }}
{% endfor %}
{% else %}

No items in this domain yet

Items show up here once an admin adds them to this domain.

{% endif %} {% endblock %}