{% extends "data_hub/base_data_hub.html" %} {% block data_hub_content %}

Import Logs

New Batch Import
{# Summary cards #}
Total Imports
{{ summary.total }}
Overall Match Rate
{{ summary.overall_rate }}%
Total Ingredients Extracted
{{ summary.total_extracted }}
Imports With Issues
{{ summary.flagged }}
{# Filter bar #}
{% if status_filter %} Clear {% endif %} {{ total }} records
{# Log table #}
{% for item in logs %} {% set log = item.log %} {% else %} {% endfor %}
ID Recipe File Status Match Rate Extracted Unmatched Duration Date
{{ log.id }} {% if log.recipe %} {{ log.recipe_title or log.recipe.title or '—' }} {% else %} {{ log.recipe_title or '—' }} {% endif %} {{ log.filename or '—' }} {% if log.status == 'success' %} ✓ Success {% elif log.status == 'partial' %} ⚠ Partial {% elif log.status == 'failed' %} ✗ Failed {% else %} {{ log.status or '?' }} {% endif %} {% if item.match_pct is not none %} {{ item.match_pct }}% {% else %} {% endif %} {{ log.total_extracted or 0 }} {{ log.unmatched_count or 0 }} {% if log.duration_ms %}{{ (log.duration_ms / 1000)|round(1) }}s{% else %}—{% endif %} {{ log.created_at.strftime('%m/%d %H:%M') if log.created_at else '—' }} Detail
No import logs yet.
{# Pagination #} {% if pages > 1 %} {% endif %} {% endblock %}