{% extends "base.html" %} {% from "_tree.html" import render_tree %} {% block title %}Memories ยท Retain{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% endif %} {% if selected %}

{{ category_crumbs[-1].label }}

{% if selected_description %}

{{ selected_description }}

{% endif %}
{{ memories|length }} memories
{% for memory in memories %}
Priority {{ memory.priority }}

{{ memory.content }}

Edit
{% else %}
No memories here yet.
{% endfor %}
{% else %}

No categories yet

Create one from the Categories page.

Create category
{% endif %}
{% endblock %}