{% extends "base.html" %} {% block title %}Pending{% endblock %} {% block content %}

Pending Memories {{ pending|length }}

{% if pending %}
{% for p in pending %} {% if p.obs_type == 'session_summary' %}
SESSION SUMMARY {% if p.source_tool %}{{ p.source_tool | replace('_', ' ') | upper }}{% endif %} {% if p.project_path %}{{ p.project_path.split('/')[-1] }}{% endif %}

{{ p.title }}

{% if p.narrative %}
SUMMARY

{{ p.narrative }}

{% endif %} {% if p.facts %}
COMPLETED
    {% for item in p.facts %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% if p.evidence %}
NEXT STEPS

{{ p.evidence }}

{% endif %}
{% else %}
{{ p.obs_type | upper | replace('_', ' ') }} {{ p.type }} {% if p.source_tool %}{{ p.source_tool | replace('_', ' ') | upper }}{% endif %} {% if p.project_path %}{{ p.project_path.split('/')[-1] }}{% endif %} {{ (p.confidence * 100)|int }}% {% if p.facts %}
{% endif %}

{{ p.title }}

{% if p.facts %}
    {% for f in p.facts %}
  • {{ f }}
  • {% endfor %}
{% else %}

{{ p.narrative }}

{% endif %} {% if p.tags %}
{% for t in p.tags %}{{ t }}{% endfor %}
{% endif %} {% if p.evidence %}

"{{ p.evidence }}"

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

No pending memories.

{% endif %} {% endblock %}