{% extends "base.html" %} {% block title %}Memory Detail - Agent Wasp{% endblock %} {% block content %}
Back to Memory
{% if entry %}

{{ entry.memory_type.value }} {{ entry.id[:12] }}...

Summary
{{ entry.summary }}
Tags
{% for tag in entry.tags %} {{ tag }} {% endfor %} {% if not entry.tags %} No tags {% endif %}
Created
{{ entry.created_at }}
Updated
{{ entry.updated_at }}

Content

{{ entry.content | tojson(indent=2) }}
{% else %}
Memory entry not found.
{% endif %} {% endblock %}