{% extends "base.html" %} {% block title %}Capture queue — Garden{% endblock %} {% block content %}

Capture queue

{% for s in ['new', 'processed', 'archived', 'all'] %} {{ s }}{% if s != 'all' and counts.get(s) %} ({{ counts[s] }}){% endif %} {% endfor %} + New capture
{% for n in notes %}
{{ n.created_at[:16].replace('T', ' ') }} {{ n.status }} {% if n.status == 'new' %} {% elif n.status == 'archived' %} {% elif n.status == 'processed' %} {% endif %}
{% if n.text %}
{{ n.text }}
{% endif %} {% if n.transcript and n.transcript != n.text %}
{{ n.transcript }}
{% endif %}
{% if n.audio_path %} {% endif %} {% if n.photos %}
{% for p in n.photos %} photo {% endfor %}
{% endif %} {% if n.processing_notes %}
Processing: {{ n.processing_notes }}
{% endif %}
{% else %}

No {{ status }} notes.

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}