{% extends "base.html" %} {% block title %}{{ memory_type_display }} - Memorizz{% endblock %} {% block content %} {% if items %}
{% for item in items %}
{% if item.name %}

{{ item.name }}

{% elif item.title %}

{{ item.title }}

{% elif item._id %}

Item {{ item._id|string|truncate(12) }}

{% else %}

Item {{ loop.index }}

{% endif %} {% if item._id %} {{ item._id|string|truncate(20) }} {% endif %}
{% if item.content %}

{{ item.content|truncate(200) }}

{% elif item.description %}

{{ item.description|truncate(200) }}

{% endif %}
{% if item.role %} {{ item.role }} {% endif %} {% if item.memory_id %} Memory: {{ item.memory_id|truncate(12) }} {% endif %} {% if item.timestamp %} {{ item.timestamp }} {% endif %} {% if item.created_at %} Created: {{ item.created_at }} {% endif %}
{% endfor %}
{% else %}
📭

No {{ memory_type_display }} Found

There are no items of this type stored in the memory provider.

{% endif %} {% endblock %}