{% extends "base.html" %} {% from '_capture_widget.html' import capture_widget %} {% block title %}Capture — Garden{% endblock %} {% block content %}

Field notes

Quick capture: dictate, snap, or type. Process later. {% if new_count %} {{ new_count }} unprocessed. {% else %} View queue. {% endif %}

{{ capture_widget('main', mode='capture', save_label='Save note') }}

Recent

{% for n in recent %}
{{ n.created_at[:16].replace('T', ' ') }} {{ n.status }}
{% if n.audio_path %} {% endif %} {% if n.photos %}
{% for p in n.photos %} photo {% endfor %}
{% endif %}
{% if n.text %}
{{ n.text }}
{% endif %} {% if n.transcript and n.transcript != n.text %}
{{ n.transcript }}
{% endif %}
{% else %}

No notes yet.

{% endfor %}
{% endblock %} {% block scripts %} {# capture.js is loaded site-wide via base.html (the comment widget needs it on every entity page), so don't re-include it here. #} {% endblock %}