{% extends "layout.html" %} {% set page_title = "Processing Pipeline Dashboard" %} {% block content %}

Processing Pipeline Dashboard

Monitor and manage Google Forms integration and AI processing

{{ status.pending_submissions or 0 }}

Pending Submissions

{{ stats.today_processed }}

Processed Today

{{ stats.pending_verification }}

Awaiting Verification

{{ stats.total_processed }}

Total Processed

System Status
Processing Enabled: {% if status.processing_enabled %}Enabled{% else %}Disabled{% endif %}
Google Sheets: {% if status.google_sheets_connected %}Connected{% else %}Mock Mode{% endif %}
Last Check: {{ status.last_check[:19] if status.last_check else 'Never' }}
Processing Pipeline Flow
Google Forms
AI Analysis
Database
Quick Actions
View Processing Log
Recent Processing Activity
{% if recent_records %}
{% for record in recent_records %} {% endfor %}
ID Scientific Name Submitter Created AI Confidence Status Actions
{{ record.id }} {{ record.scientific_name or 'Unknown' }} {{ record.submitter_name or 'Anonymous' }} {{ record.created_at.strftime('%Y-%m-%d %H:%M') if record.created_at else 'Unknown' }} {% if record.ai_confidence %} {{ "%.0f"|format(record.ai_confidence * 100) }}% {% else %} N/A {% endif %} {% if record.is_verified %} Verified {% else %} Pending {% endif %}
{% if not record.is_verified %} {% endif %}
{% else %}
No Processing Activity

No Google Forms submissions have been processed yet.

{% endif %}
{% endblock %}