{% extends "base.html" %} {% block title %}Palinode · memory{% endblock %} {% block crumb %}memory{% endblock %} {% block content %}

Memory

Every browsable memory on disk — filter, or search the index.

{% if search.query %}

Search results · "{{ search.query }}"

{% if search.error %}
{{ search.error }}
{% elif search.results %} {% else %}

No matches.

{% endif %}

← back to all memory

{% else %}
all core {% for f in ['fresh', 'aging', 'stale'] %} {{ f }} {% endfor %} {% for t in listing.types %} {{ t }} {% endfor %}

{{ "{:,}".format(listing.total) }} {% if listing.filters.type or listing.filters.core or listing.filters.freshness %}matching{% endif %} memories

{% if listing.rows %} {% elif unindexed and not listing.filters.type and not listing.filters.core and not listing.filters.freshness %}

No memories on disk yet.

{% else %}

No memories match this filter.

{% endif %} {% endif %}
{% endblock %}