{% extends "base.html" %} {% block title %}{{ memory.name }}{% endblock %} {% block content %}

{{ memory.name }}

{{ project.slug }} · type={{ memory.memory_type }} · id={{ memory.id }}

Created: {{ memory.created_at.strftime('%Y-%m-%d %H:%M') if memory.created_at else '' }} · Updated: {{ memory.updated_at.strftime('%Y-%m-%d %H:%M') if memory.updated_at else '' }}

{% if memory.supersedes %}

Supersedes: id={{ memory.supersedes }}

{% endif %} {% if memory.attributes %}

Attributes

{{ memory.attributes }}
{% endif %} {% if memory.body %}

Body

{{ memory.body }}
{% else %}

No body content.

{% endif %} {% endblock %}