{% extends "base.html" %} {% block title %}Profiles - MemoryBot{% endblock %} {% block body %}
{% include "partials/sidebar.html" %}

Memory Profiles

Create and manage memory profiles for your loved ones

{% if profiles %}
{% for p in profiles %}
{{ p.name[0] }}

{{ p.name }}

{% if p.relationship_type %} {{ p.relationship_type }} {% endif %} {% if p.description %}

{{ p.description }}

{% endif %}
{% if p.date_of_birth %}Born: {{ p.date_of_birth }}{% endif %} {% if p.date_of_death %}Died: {{ p.date_of_death }}{% endif %}
{% endfor %}
{% else %}

No profiles yet

Create your first memory profile to start preserving memories

{% endif %}
{% endblock %}