{% extends "base.html" %} {% block title %}Timeline - {{ profile.name }} - MemoryBot{% endblock %} {% block body %}
{% include "partials/sidebar.html" %}
Back to {{ profile.name }}

Memory Timeline

Chronological view of memories for {{ profile.name }}

{% if monthly %}
{% for month, items in monthly.items() %}

{{ month }}

{% for item in items %}
{% if item.type == 'file' %} {% else %} {% endif %}

{{ item.title }}

{{ item.type }}

{{ item.detail }}

{{ item.date.strftime('%b %d, %Y at %H:%M') if item.date else '' }}

{% endfor %}
{% endfor %}
{% else %}

No Timeline Yet

Upload files or start conversations to build a timeline of memories.

{% endif %}
{% endblock %}