{% extends "base.html" %} {% block title %}My Profile - PrepMate{% endblock %} {% block content %}
{% if user_profile and user_profile.profile_picture_url %} {{ user_profile.display_name }} {% else %} Default Avatar {% endif %}

{% if user_profile %} {{ user_profile.display_name }} {% else %} My Profile {% endif %}

{% if user_profile %} @{{ user_profile.user_id }} {% endif %}

About Profile Facts

Add facts that PrepMate should remember across all conversations.

Examples:

  • Software Engineer
  • 2 children
  • Allergic to peanuts

Profile Facts

Add information about yourself that PrepMate should remember
{% if facts %} {% for fact in facts %}
{{ fact.content }}
{{ fact.created_at }}
{% endfor %} {% else %}

No facts yet. Start adding information about yourself below!

Examples: "I work as a software engineer" or "I have 2 children"

{% endif %}
{% endblock %}