{% extends "data_hub/base_data_hub.html" %} {% block data_hub_content %}
| 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. | |||||||||