{% extends "base.html" %} {% block title %}Inbox — MemForge{% endblock %} {% block content %}

Inbox

{{ drafts | length }} draft(s)
{% if not drafts %}

Inbox is empty.

Run mem save to extract from your latest session.

{% endif %}
{% for item in drafts %} {% set d = item.draft %}
{{ d.unit.type }} {{ d.unit.confidence }} {% if d.quarantine %} ⚠ quarantined {% endif %} {% for tag in d.unit.tags %} #{{ tag }} {% endfor %}

{{ d.unit.title }}

id: {{ d.draft_id }} · {{ d.created_at.strftime('%Y-%m-%d %H:%M') }}

{% if not d.quarantine %} {% endif %}
{% endfor %}
{% endblock %}