{% extends "layout.html" %} {% set page_title = "Processing Pipeline Dashboard" %} {% block content %}
Monitor and manage Google Forms integration and AI processing
Pending Submissions
Processed Today
Awaiting Verification
Total Processed
| 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' }} |
| 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 %}
|
No Google Forms submissions have been processed yet.