{% extends "base.html" %} {% block content %}
Context (optional)
Inbox Processed All
{% if items %} {% for item in items %} {# Batch header #} {% if item._batch_first and item.import_batch_id %}
Batch · {{ batches[item.import_batch_id|string] }} items
{% endif %}
{{ item.raw_text }}
{% if item.processed %}
{% if item.converted_to_type and item.converted_to_type != 'dismissed' %} {{ item.converted_to_type|replace('_', ' ') }} {% if item.converted_to_id %} {% if item.converted_to_type == 'list_item' and item.list_id %} View → {% elif item.converted_to_type == 'link' %} View → {% elif item.converted_to_type in ('task', 'note', 'project', 'contact', 'decision') %} View → {% endif %} {% endif %} {% elif item.converted_to_type == 'dismissed' %} dismissed {% endif %}
{% else %}
{% endif %}
{% endfor %} {% else %}
📥
{% if show == 'processed' %}No processed items{% elif show == 'all' %}No capture items{% else %}Inbox is empty{% endif %}
{% endif %} {% endblock %}