{% extends "base.html" %} {% block title %}{{ project.project_name }} - IDE Memory MCP{% endblock %} {% block content %}

{{ project.project_name }}

ID: {{ project.project_id }}

Path: {{ project.project_path }}

Git Remote: {{ project.git_remote_url or 'N/A' }}

Created: {{ project.created_at }}

Last Updated: {{ project.updated_at }}

Memory Sections

{% for section_name, content in sections.items() %}

{{ section_name.replace('_', ' ').title() }}

{% if content.strip() %}
{{ content }}
{% else %}

This section is empty.

{% endif %}
{% endfor %} {% if not sections %}

No Sections Found

This project doesn't have any memory sections yet.

{% endif %} {% endblock %}